Create INSTALL.md
This commit is contained in:
parent
2a1f03757e
commit
fee5e01a5c
1 changed files with 26 additions and 0 deletions
26
INSTALL.md
Normal file
26
INSTALL.md
Normal 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.
|
Loading…
Reference in a new issue