aboutsummaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
Diffstat (limited to 'init.vim')
-rw-r--r--init.vim14
1 files changed, 12 insertions, 2 deletions
diff --git a/init.vim b/init.vim
index 3142718..0c48a68 100644
--- a/init.vim
+++ b/init.vim
@@ -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