X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=init-local.vim.example;fp=init-local.vim.example;h=0000000000000000000000000000000000000000;hp=155438e614d022917d7260d685fc114ad74b962d;hb=d768c759620dfbc8caa54bbb65ff784067057546;hpb=68f80c92cc99f2a2a29666b89b0e66259c1c8a7f diff --git a/init-local.vim.example b/init-local.vim.example deleted file mode 100644 index 155438e..0000000 --- a/init-local.vim.example +++ /dev/null @@ -1,27 +0,0 @@ -" 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 -"let g:ycm_min_num_of_chars_for_completion = 2 -"let g:ycm_collect_identifiers_from_tags_files = 1 -"let g:ycm_autoclose_preview_window_after_completion = 1 -"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