diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2016-12-31 15:13:46 -0600 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2016-12-31 15:13:46 -0600 |
commit | 3e60a072c28edee39b267905927964b662594d3e (patch) | |
tree | 343cf0712cf7523b54869a998d588e45b0aae639 | |
parent | 1aceb719cc95aa4dd355457540f41e149fd3e64f (diff) |
vim: add tagbar
-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> |