summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2016-12-31 14:58:18 -0600
committerBobby Bingham <koorogi@koorogi.info>2016-12-31 14:58:18 -0600
commit1aceb719cc95aa4dd355457540f41e149fd3e64f (patch)
tree1441695f533c49a959a7d332cce456f870cd7feb
parentf6482893ddc6ec7ea0b4c1160012f84ef9f7acdf (diff)
vim: add nerdtree
-rw-r--r--.gitmodules3
m---------vim/.vim/bundle/nerdtree0
-rw-r--r--vim/.vimrc3
3 files changed, 6 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 11fd91c..ac21372 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -19,3 +19,6 @@
[submodule "vim/.vim/bundle/vim-fugitive"]
path = vim/.vim/bundle/vim-fugitive
url = git://github.com/tpope/vim-fugitive.git
+[submodule "vim/.vim/bundle/nerdtree"]
+ path = vim/.vim/bundle/nerdtree
+ url = https://github.com/scrooloose/nerdtree.git
diff --git a/vim/.vim/bundle/nerdtree b/vim/.vim/bundle/nerdtree
new file mode 160000
+Subproject eee431dbd44111c858c6d33ffd366cae1f17f8b
diff --git a/vim/.vimrc b/vim/.vimrc
index 5506666..e8d4e90 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -57,3 +57,6 @@ nnoremap a, :Tabularize /,/r0l1<cr>
" airline
set laststatus=2 " display status line even with no splits
let g:netrw_dirhistmax=0 " without this, it likes to create ~/.vim/.netrwhist
+
+" nerdtree:
+nnoremap <F12> :NERDTreeToggle<cr>