diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-22 16:59:25 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-08-22 16:59:25 -0400 |
| commit | ea49cd1213fb707928f6c36d7aa206060c9441be (patch) | |
| tree | c616744e94968523ee988c401d67a941d7284c40 | |
| parent | 6f6a853eae364d7c8fbbadc3d1d8e02979764a32 (diff) | |
| download | vim-cfg-ea49cd1213fb707928f6c36d7aa206060c9441be.tar.gz vim-cfg-ea49cd1213fb707928f6c36d7aa206060c9441be.tar.xz | |
Add a few more plugins
| -rw-r--r-- | .gitmodules | 9 | ||||
| -rw-r--r-- | init.vim | 14 | ||||
| m--------- | pack/plugins/start/clang_complete | 0 | ||||
| m--------- | pack/plugins/start/fugitive | 0 | ||||
| m--------- | pack/plugins/start/tagbar | 0 |
5 files changed, 21 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules index f5fd24a..add1721 100644 --- a/.gitmodules +++ b/.gitmodules @@ -64,3 +64,12 @@ [submodule "pack/plugins/start/c.vim"] path = pack/plugins/start/c.vim url = https://github.com/vim-scripts/c.vim +[submodule "pack/plugins/start/clang_complete"] + path = pack/plugins/start/clang_complete + url = https://github.com/xavierd/clang_complete +[submodule "pack/plugins/start/tagbar"] + path = pack/plugins/start/tagbar + url = https://github.com/preservim/tagbar +[submodule "pack/plugins/start/fugitive"] + path = pack/plugins/start/fugitive + url = https://github.com/tpope/vim-fugitive @@ -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 diff --git a/pack/plugins/start/clang_complete b/pack/plugins/start/clang_complete new file mode 160000 +Subproject 293a1062274a06be61797612034bd8d87851406 diff --git a/pack/plugins/start/fugitive b/pack/plugins/start/fugitive new file mode 160000 +Subproject e7d2e876900c4e09be59d4e1037ecceeeb88098 diff --git a/pack/plugins/start/tagbar b/pack/plugins/start/tagbar new file mode 160000 +Subproject ab6f2d5a683041a46c48b28418d4a2a01bbd555 |
