diff options
-rw-r--r-- | plugin/vim-options.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index c8224db..1626b09 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -354,6 +354,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- + "----------------------------------------------------------------------------------------------------------------------- " CamelCaseMotion "----------------------------------------------------------------------------------------------------------------------- @@ -363,3 +364,14 @@ if !empty(glob($EditorDir.'plugged/CamelCaseMotion/plugin/camelcasemotion.vim')) xnoremap ,, , onoremap ,, , endif +"----------------------------------------------------------------------------------------------------------------------- + + + +"----------------------------------------------------------------------------------------------------------------------- +" YouCompleteMe +"----------------------------------------------------------------------------------------------------------------------- +if !empty(glob($EditorDir.'plugged/YouCompleteMe/plugin/youcompleteme.vim')) + let g:ycm_keep_logfiles = 0 +endif +"----------------------------------------------------------------------------------------------------------------------- |