diff options
author | Matthias Brändli <matthias.braendli@u-blox.com> | 2017-01-31 10:11:34 +0100 |
---|---|---|
committer | Matthias Brändli <matthias.braendli@u-blox.com> | 2017-01-31 10:11:34 +0100 |
commit | f292977209ebf7bd9a525a7bccb16965cbe02238 (patch) | |
tree | a27aa1a45fda5c8c47402dc8ef452d938a8a6f7b /dotvimrc | |
parent | 566a5465c169df1f92be66ef5c750c6ef36006ce (diff) | |
download | vimrc-f292977209ebf7bd9a525a7bccb16965cbe02238.tar.gz vimrc-f292977209ebf7bd9a525a7bccb16965cbe02238.tar.bz2 vimrc-f292977209ebf7bd9a525a7bccb16965cbe02238.zip |
Add tagbar plugin
Diffstat (limited to 'dotvimrc')
-rw-r--r-- | dotvimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -74,13 +74,13 @@ let g:gitgutter_eager = 0 " only update on read/write NeoBundle 'kien/ctrlp.vim' "amazing search with ctrl p + NeoBundle 'JazzCore/ctrlp-cmatcher' let g:ctrlp_match_func = {'match' : 'matcher#cmatch' } " Also search tags let g:ctrlp_extensions = ['tag'] noremap <Leader>p :CtrlP<CR> -noremap <Leader>t :CtrlPTag<CR> "let g:ctrlp_working_path_mode = 'a' @@ -97,6 +97,8 @@ noremap <Leader>Y :YcmRestartServer<CR> NeoBundle 'tpope/vim-surround.git' NeoBundle 'taglist.vim' +NeoBundle 'majutsushi/tagbar' +noremap <Leader>t :TagbarToggle<CR> NeoBundle 'ifdef-highlighting' NeoBundle 'ciaranm/detectindent' "adapts tabstop and this shit automagically |