diff --git a/vim/vim/vim-plug/.gitignore b/vim/vim/vim-plug/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/vim/vim/vim-plug/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/vim/vimrc b/vim/vimrc index 9cf8b35..9991c6e 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -104,3 +104,13 @@ if filereadable("/etc/vim/vimrc.local") endif syntax spell toplevel + + +call plug#begin('~/.vim/vim-plug') + +Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } + +call plug#end() + +map :NERDTreeToggle +