X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=init-local.vim.example;h=155438e614d022917d7260d685fc114ad74b962d;hp=d75e4fd7932fa246443f0e2d20ef921b7e2c7d07;hb=bb415e77a5be19d4f4cc0481151be9338b1edc72;hpb=0b8d10cf3795f7ce103de2165e3aae15c0f52ec7 diff --git a/init-local.vim.example b/init-local.vim.example index d75e4fd..155438e 100644 --- a/init-local.vim.example +++ b/init-local.vim.example @@ -1,3 +1,11 @@ +" Do not show diagnostic window of vim-clang +let g:clang_diagsopt = '' + +let g:ConqueTerm_StartMessages = 0 + +" Reduce load on memory by updating one plugin at a time +"let g:plug_threads = 1 + " Configuration for youcompleteme, if not using vim-clang. "let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py' "let g:ycm_confirm_extra_conf = 0 @@ -8,5 +16,12 @@ "nnoremap jd :YcmCompleter GoToDefinitionElseDeclaration "let g:ycm_filetype_whitelist = { 'c' : 1, 'cpp' : 1, 'cs' : 1, 'objc' : 1, 'java' : 1, 'python' : 1 } -" Do not show diagnostic window of vim-clang -let g:clang_diagsopt = '' +" Some terminals, like konsole, cause weired symbols (e.g., q) printed due to +" broken cursor-shape termcodes. +if has('nvim') + set guicursor= + " Workaround some broken plugins which set guicursor indiscriminately. + au OptionSet guicursor noautocmd set guicursor= +end + +" vim:ft=vim