X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=init-local.vim.example;h=155438e614d022917d7260d685fc114ad74b962d;hp=666669fc472bf66356ac33653d272e4da759b994;hb=940c5d4d85492624fab8c01bfd8c98e3eadadc42;hpb=8b968774dab7522ad54bb470424416b5c1e7b9c2 diff --git a/init-local.vim.example b/init-local.vim.example index 666669f..155438e 100644 --- a/init-local.vim.example +++ b/init-local.vim.example @@ -15,3 +15,13 @@ let g:ConqueTerm_StartMessages = 0 "let g:ycm_key_list_select_completion = [''] "nnoremap jd :YcmCompleter GoToDefinitionElseDeclaration "let g:ycm_filetype_whitelist = { 'c' : 1, 'cpp' : 1, 'cs' : 1, 'objc' : 1, 'java' : 1, 'python' : 1 } + +" 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