From dcfa370eafba93b56ff911b60963e1b61e8162fc Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Wed, 25 Nov 2015 05:55:12 +0100 Subject: nvim: init: Reorder plugins section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- nvim/init.vim | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index 354f386..57aeae0 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,22 +1,14 @@ -call plug#begin(expand('$XDG_CONFIG_HOME/nvim/plugs')) - -" Unite and create user interfaces -"NeoBundle 'Shougo/unite.vim' - -" Emmet-like snippet system -Plug 'mattn/emmet-vim' +""" +" Plugins +" -" Easy text exchange operator -Plug 'tommcdo/vim-exchange' - -" Vim runtime files -Plug 'tpope/vim-git' - -" Git wrapper -Plug 'tpope/vim-fugitive' +call plug#begin(expand('$XDG_CONFIG_HOME/nvim/plugs')) -" Fuzzy file/buffer/mru/tag/etc. finder -Plug 'ctrlpvim/ctrlp.vim' +Plug 'ctrlpvim/ctrlp.vim' " Fuzzy file/buffer/mru/tag/etc. finder +Plug 'mattn/emmet-vim' " Emmet-like snippet system +Plug 'tommcdo/vim-exchange' " Easy text exchange operator +Plug 'tpope/vim-git' " Vim runtime files +Plug 'tpope/vim-fugitive' " Git wrapper " Asynchronous :make using Neovim's job-control " Upstream: Plug 'benekastah/neomake' -- cgit v1.2.3-54-g00ecf