diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-03-25 13:27:44 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-03-25 13:27:44 -0600 |
commit | cfd5e7b19acb04db470dfc842f89ba284a55b6fd (patch) | |
tree | 95b40e2a31c4aad902a3c0c0f1ca94fb2ce49f15 | |
parent | 367143e9def701434af3b2194d849e58ad01683a (diff) |
Change directory for plugins, bring back nerdtree
-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 |