Create INSTALL.md

This commit is contained in:
Zeno Rocha 2019-12-19 10:47:51 -03:00 committed by GitHub
parent 2a1f03757e
commit fee5e01a5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

26
INSTALL.md Normal file
View file

@ -0,0 +1,26 @@
### [Vim](http://www.vim.org/)
#### Install using Git
If you [use vim + pathogen](http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/):
cd ~/.vim
git submodule add git@github.com:dracula/vim.git bundle/dracula
If you [use vim + vundle](https://github.com/gmarik/vundle):
Plugin 'dracula/vim', { 'name': 'dracula' }
:PluginInstall
If you [use vim-plug](https://github.com/junegunn/vim-plug) (\`as\` will install the plugin in a directory called 'dracula' instead of just 'vim'):
Plug 'dracula/vim', { 'as': 'dracula' }
:PlugInstall
Note that dracula must be in your `'runtimepath'` to load properly: Version 2.0 introduced autoload functionality for part of the plugin, which doesn't work without `'runtimepath'` properly set.
For users of Vim 8's `|packages|` feature, it suffices to put
packadd! dracula
in your vimrc, alongside `syntax on` and `colorscheme dracula`. For users of other plugin managers, consult your documentation to make sure you put dracula on the `'runtimepath'` before loading it.