diff options
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | vim/.vim/bundle/tagbar | 0 | ||||
-rw-r--r-- | vim/.vimrc | 5 |
3 files changed, 7 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index ac21372..098555e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -22,3 +22,6 @@ [submodule "vim/.vim/bundle/nerdtree"] path = vim/.vim/bundle/nerdtree url = https://github.com/scrooloose/nerdtree.git +[submodule "vim/.vim/bundle/tagbar"] + path = vim/.vim/bundle/tagbar + url = https://github.com/majutsushi/tagbar.git diff --git a/vim/.vim/bundle/tagbar b/vim/.vim/bundle/tagbar new file mode 160000 +Subproject 51e6e3b66a43d4ea09ebe8b40004c7b54b4d586 @@ -59,4 +59,7 @@ 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> +nnoremap <F9> :NERDTreeToggle<cr> + +" tagbar +nnoremap <F12> :TagbarToggle<cr> |