NeoBundle has been replaced with Dein.vim

Circuit
2020-12-06 00:12:27 +00:00
parent f31c73353e
commit 613beeec30

@@ -1,13 +1,17 @@
# General # General
First of all let's start with basics. Pick your favorite plugin manager: [Pathogen](https://github.com/tpope/vim-pathogen), [Vundle](https://github.com/gmarik/vundle), [NeoBundle](https://github.com/Shougo/neobundle.vim) or [vim-plug](https://github.com/junegunn/vim-plug), just to name a few. Pathogen is the oldest, simplest, and most featureless. Vundle is very popular and I've used it for a long time before. If you're using some of [Shougo's plugins](https://github.com/Shougo), you should probably pick NeoBundle. Last but not least is vim-plug, which I've recently switched to. First of all let's start with basics. Pick your favorite plugin manager: [Pathogen](https://github.com/tpope/vim-pathogen), [Vundle](https://github.com/gmarik/vundle), [Dein](https://github.com/Shougo/dein.vim) or [vim-plug](https://github.com/junegunn/vim-plug), just to name a few. Pathogen is the oldest, simplest, and most featureless. Vundle is very popular and I've used it for a long time before. If you're using some of [Shougo's plugins](https://github.com/Shougo), you should probably pick Dein. Last but not least is vim-plug, which I've recently switched to.
- Pathogen - Pathogen
+ `git clone https://github.com/morhetz/gruvbox.git ~/.vim/bundle/gruvbox` + `git clone https://github.com/morhetz/gruvbox.git ~/.vim/bundle/gruvbox`
- Vundle - Vundle
+ Add `Plugin 'morhetz/gruvbox'` to your .vimrc and run `:PluginInstall` + Add `Plugin 'morhetz/gruvbox'` to your .vimrc and run `:PluginInstall`
- NeoBundle - Dein
+ Add `NeoBundle 'morhetz/gruvbox'` to your .vimrc and run `:NeoBundleInstall` + Add the following to your .vimrc, and run `call dein#install()`:
```viml
call dein#add('morhetz/gruvbox')
```
- vim-plug - vim-plug
+ Add `Plug 'morhetz/gruvbox'` to your .vimrc and run `:PlugInstall` + Add `Plug 'morhetz/gruvbox'` to your .vimrc and run `:PlugInstall`
- Vim-8 - Vim-8