diff options
Diffstat (limited to 'init.vim')
| -rw-r--r-- | init.vim | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -89,10 +89,20 @@ let g:syntastic_go_checkers = [ 'go', 'gofmt', 'golangci_lint' ] " This lets :lopen / :lwindow always be populated work let g:syntastic_always_populate_loc_list = 1 - " some info on the Tabular plugin: " http://vimcasts.org/episodes/aligning-text-with-tabular-vim/ - " Commenting in and out blocks can be done with `gc` " https://github.com/tpope/vim-commentary + +nmap <F8> :TagbarToggle<CR> +let g:tagbar_ctags_bin='uctags' + +" For clang complete +" path to directory where library can be found +let g:clang_library_path='/usr/local/lib' +" package clang-tools-extra on OpenBSD provides the library + + +" For info on fugitive +" https://github.com/tpope/vim-fugitive |
