mirror of
https://github.com/jbranchaud/til
synced 2026-01-07 17:18:02 +00:00
Add Vim Without The Extras as a vim til.
This commit is contained in:
21
vim/vim-without-the-extras.md
Normal file
21
vim/vim-without-the-extras.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Vim Without The Extras
|
||||
|
||||
If you want to start up vim without loading all the usual plugins, you
|
||||
can supply the `--noplugin` flag
|
||||
|
||||
```
|
||||
$ vim --noplugin coffee.rb
|
||||
```
|
||||
|
||||
You can take things even further by instead telling vim to open without
|
||||
loading any plugins or configuration files. That is, you can tell vim to
|
||||
skip all initializations.
|
||||
|
||||
```
|
||||
$ vim -u NONE coffee.rb
|
||||
```
|
||||
|
||||
If you are used to lots of syntax highlighting, custom bindings, and
|
||||
other niceties, this may feel rather foreign.
|
||||
|
||||
Source: [Jake Worth](https://twitter.com/jwworth)
|
||||
Reference in New Issue
Block a user