Added more flags for launching vim

pull/45/head
Igor Irianto 4 years ago
parent 53e728d8d6
commit 04a5e5b303

@ -218,21 +218,31 @@ Your vimrc should look like this:
+-- 4 lines: mappings --------
```
## Running vim without vimrc
## Running Vim With Or Without Vimrc And Plugins
If you need to run Vim without any vimrc, run this from the terminal:
If you need to run Vim without both vimrc and plugins, run:
```
vim -u NONE
```
If you need to run Vim with a *different* vimrc, say `~/.vimrc-extra`, run this from the terminal:
If you need to launch Vim without vimrc but with plugins, run:
```
vim -u ~/.vimrc-extra
vim -u NORC
```
If you need to run Vim with vimrc but without plugins, run:
```
vim --noplugin
```
The `u` flag overwrites all the seven vimrc paths mentioned earlier.
If you need to run Vim with a *different* vimrc, say `~/.vimrc-extra`, run:
```
vim -u ~/.vimrc-extra
```
## Configure Vimrc The Smart Way

Loading…
Cancel
Save