From 6a01c95ef39ee339adfeba78904e987e0be41306 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 18 May 2015 08:43:26 -0500 Subject: [PATCH] Add Vim Without The Extras as a vim til. --- README.md | 1 + vim/vim-without-the-extras.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 vim/vim-without-the-extras.md diff --git a/README.md b/README.md index df55a7c..f4cda6f 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/vim/vim-without-the-extras.md b/vim/vim-without-the-extras.md new file mode 100644 index 0000000..4867b7d --- /dev/null +++ b/vim/vim-without-the-extras.md @@ -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)