]> git.friedersdorff.com Git - max/saltfiles.git/commitdiff
Add tagline to vim
authorMaximilian Friedersdorff <max@friedersdorff.com>
Fri, 1 Nov 2019 11:17:09 +0000 (11:17 +0000)
committerMaximilian Friedersdorff <max@friedersdorff.com>
Fri, 1 Nov 2019 11:17:09 +0000 (11:17 +0000)
states/vim/files/vimrc

index 50509aeef109310152876e0b51897372651e442c..1fc97881cbbe1d8dc1e9ff8174d80021c241d656 100644 (file)
@@ -40,6 +40,7 @@ Plugin 'aklt/plantuml-syntax'
 Plugin 'psf/black'
 Plugin 'vim-python/python-syntax'
 Plugin 'luochen1990/rainbow'
 Plugin 'psf/black'
 Plugin 'vim-python/python-syntax'
 Plugin 'luochen1990/rainbow'
+Plugin 'majutsushi/tagbar'
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
@@ -155,3 +156,6 @@ hi MatchParen cterm=underline ctermbg=none ctermfg=none
 
 " Rainbow parens
 let g:rainbow_active = 1
 
 " Rainbow parens
 let g:rainbow_active = 1
+
+" Activate tagbar with F8
+nmap <F8> :TagbarToggle<CR>