vim: Add tagbar

This commit is contained in:
Simon Bruder 2020-04-22 22:42:14 +00:00
parent 8c2432035a
commit e8da0b1f50
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

@ -5,6 +5,7 @@ set nocompatible
call plug#begin('~/.vim/plugged')
" Features
Plug 'MarcWeber/vim-addon-local-vimrc'
Plug 'majutsushi/tagbar'
" Syntax highlighting/Language support
Plug 'ElmCast/elm-vim', { 'for': 'elm' }
@ -65,3 +66,6 @@ endif
if has("gui_running")
set guifont=Terminess\ Powerline
endif
" Tagbar
nmap <F8> :TagbarToggle<CR>