aboutsummaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-08-22 16:59:25 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-08-22 16:59:25 -0400
commitea49cd1213fb707928f6c36d7aa206060c9441be (patch)
treec616744e94968523ee988c401d67a941d7284c40 /init.vim
parent6f6a853eae364d7c8fbbadc3d1d8e02979764a32 (diff)
downloadvim-cfg-ea49cd1213fb707928f6c36d7aa206060c9441be.tar.gz
vim-cfg-ea49cd1213fb707928f6c36d7aa206060c9441be.tar.xz
Add a few more plugins
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