vim: Add tagbar
This commit is contained in:
parent
8c2432035a
commit
e8da0b1f50
|
@ -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>
|
||||
|
|
Reference in a new issue