1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00

Add Vim Without The Extras as a vim til.

This commit is contained in:
jbranchaud
2015-05-18 08:43:26 -05:00
parent 8b4c47ae69
commit 6a01c95ef3
2 changed files with 22 additions and 0 deletions

View File

@@ -107,6 +107,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
- [The Vim Info File](vim/the-vim-info-file.md)
- [View Commit History of a File](vim/view-commit-history-of-a-file.md)
- [Viewing Man Pages with man.vim](vim/viewing-man-pages-with-man-vim.md)
- [Vim Without The Extras](vim/vim-without-the-extras.md)
- [Whole Line Auto-Completion](vim/whole-line-auto-completion.md)
- [Wrap With Some Room](vim/wrap-with-some-room.md)

View 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)