Navigate back to the homepage

How to Start Vim temporarily without settings or plugins

Sometime you want temporarily to disable your vimrc without loading any of my plugins or settings. In this article, we will see how can we do that

Ahmed Abdulrahman
Jan 4th, 2020 • ☕️ 1 min read
vimnvimshell

When you run vim, your .vimrc file gets read and executed only once. If you want to nullify and temporarily to disable your .vimrc without loading any of my plugins or settings you need to, just use another environment by passing -u flag:

1# starts VIM without initializing vimrc
2vim -u NONE

You can also start vim with alternative vimrc file

1vim -u ~/.vimrcnew

or if you want to start VIM without any vimrc, but with plugins

1vim -u NORC

This is really handy when you when to record screencast showing default view of vim without deleting your config file.


Discuss on TwitterFollow @_ahmed_ab

Other things I've written

How to Handle Concurrent Operations in Parallel in JavaScript?

Assume that you have more than one promise and you need to know when all the promises get resolved or you have to wait till all the promises resolve.

Dec 27th, 2019 · 1 min read

Best 16 Chrome Extensions for Developers & Designers

Today, I’m sharing with you my best 16 Chrome Extensions that help designers and developers to work faster and more efficiently.

Jan 26th, 2019 · 2 min read

© 2018–2020
Ahmed Abdulrahman

Contact
hello@aadev.me

Link to $https://twitter.com/_ahmed_abLink to $https://www.behance.net/ahmedabdulrahmanLink to $https://github.com/AhmedAbdulrahman