diff options
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ "----------------------------------------------------------------------------------------------------------------------- " Plugins "---------------------------------------------------------------------------------------------------------------------- -call plug#begin('~/.config/nvim/plugged') +call plug#begin('~/.vim/plugged') " Extending vim functionality Plug 'mileszs/ack.vim' " Use ack to grep project directory @@ -18,6 +18,7 @@ Plug 'tpope/vim-fugitive' " Git integration with vim Plug 'tpope/vim-surround' " Helps with surrounding text Plug 'vimwiki/vimwiki' " A cool program for wiki notes Plug 'tmhedberg/matchit' " Match tags in html +Plug 'scrooloose/nerdtree' " I hate nerdtree but I have netrw even more " Syntax highlighting / Themes Plug 'morhetz/gruvbox' " Pretty colorscheme |