From 613beeec30003dde96a3cecc66c259c0254f8ba7 Mon Sep 17 00:00:00 2001 From: Circuit Date: Sun, 6 Dec 2020 00:12:27 +0000 Subject: [PATCH] NeoBundle has been replaced with Dein.vim --- Installation.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Installation.md b/Installation.md index 39086e2..609b80a 100644 --- a/Installation.md +++ b/Installation.md @@ -1,13 +1,17 @@ # 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 + `git clone https://github.com/morhetz/gruvbox.git ~/.vim/bundle/gruvbox` - Vundle + Add `Plugin 'morhetz/gruvbox'` to your .vimrc and run `:PluginInstall` -- NeoBundle - + Add `NeoBundle 'morhetz/gruvbox'` to your .vimrc and run `:NeoBundleInstall` +- Dein + + Add the following to your .vimrc, and run `call dein#install()`: + ```viml + call dein#add('morhetz/gruvbox') + ``` + - vim-plug + Add `Plug 'morhetz/gruvbox'` to your .vimrc and run `:PlugInstall` - Vim-8