diff options
author | Blubber <f2005278@mvrht.com> | 2016-09-20 07:47:04 +0200 |
---|---|---|
committer | Blubber <f2005278@mvrht.com> | 2016-09-20 07:47:04 +0200 |
commit | 9b9ab248573849480988bde4372ff068ade064fb (patch) | |
tree | e3179b3f04802859bf7ce4c31388097b119649d5 /.vim/vimrc_files/plugin_config.vim | |
parent | 7113c37a7895fbf0faf97b9b8868b6025853bc6f (diff) | |
download | dotfiles-9b9ab248573849480988bde4372ff068ade064fb.tar.gz dotfiles-9b9ab248573849480988bde4372ff068ade064fb.zip |
refactoring
Diffstat (limited to '.vim/vimrc_files/plugin_config.vim')
-rw-r--r-- | .vim/vimrc_files/plugin_config.vim | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/.vim/vimrc_files/plugin_config.vim b/.vim/vimrc_files/plugin_config.vim index d4c0848..c7b1a8f 100644 --- a/.vim/vimrc_files/plugin_config.vim +++ b/.vim/vimrc_files/plugin_config.vim @@ -1,7 +1,6 @@ " dotfiles -- .vim/vimrc_files/plugin_config.vim " author: johannst - " +----------------------------+ " | Vim-Airline | " +----------------------------+ @@ -10,20 +9,16 @@ let g:airline#extensions#tabline#enabled = 1 " Show just the filename let g:airline#extensions#tabline#fnamemod = ':t' - let g:airline_powerline_fonts = 1 if !exists('g:airline_symbols') let g:airline_symbols = {} endif - " +----------------------------+ " | Tagbar | " +----------------------------+ -let g:tagbar_ctags_bin='/u/jstolp/apps/bin/ctags' -"let g:tagbar_ctags_bin='/home/johannst/apps/bin/ctags' - +let g:tagbar_ctags_bin='~/.vim/bin/ctags' " +----------------------------+ " | OmniCppComplete | @@ -32,14 +27,14 @@ let g:tagbar_ctags_bin='/u/jstolp/apps/bin/ctags' " set tags+=~/.vim/tags/cpp_tags " OmniCppComplete -let OmniCpp_NamespaceSearch = 1 -let OmniCpp_GlobalScopeSearch = 1 -let OmniCpp_ShowAccess = 1 -let OmniCpp_ShowPrototypeInAbbr = 1 " show function parameters -let OmniCpp_MayCompleteDot = 1 " autocomplete after . -let OmniCpp_MayCompleteArrow = 1 " autocomplete after -> -let OmniCpp_MayCompleteScope = 1 " autocomplete after :: -let OmniCpp_DefaultNamespaces = ["std", "_GLIBCXX_STD"] -" automatically open and close the popup menu / preview window -au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif -set completeopt=menuone,menu,longest,preview +"let OmniCpp_NamespaceSearch = 1 +"let OmniCpp_GlobalScopeSearch = 1 +"let OmniCpp_ShowAccess = 1 +"let OmniCpp_ShowPrototypeInAbbr = 1 " show function parameters +"let OmniCpp_MayCompleteDot = 1 " autocomplete after . +"let OmniCpp_MayCompleteArrow = 1 " autocomplete after -> +"let OmniCpp_MayCompleteScope = 1 " autocomplete after :: +"let OmniCpp_DefaultNamespaces = ["std", "_GLIBCXX_STD"] +"" automatically open and close the popup menu / preview window +"au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif +"set completeopt=menuone,menu,longest,preview |