X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=plugins-local.vim.example;h=49d6cdf64b45010d57336549ff08df4eb5bcf480;hp=05a6bc0a3111d127ff57dee50a5b114d65ff994b;hb=HEAD;hpb=0b8d10cf3795f7ce103de2165e3aae15c0f52ec7 diff --git a/plugins-local.vim.example b/plugins-local.vim.example index 05a6bc0..49d6cdf 100644 --- a/plugins-local.vim.example +++ b/plugins-local.vim.example @@ -1,7 +1,20 @@ Plug 'jamessan/vim-gnupg' -" An alternative to youcompleteme (ycm) -"Plug 'justmao945/vim-clang' -Plug 'shuber2/vim-clang', { 'branch': 'multipy' } - "Plug 'kien/tabman.vim' + +"Plug 'chikamichi/mediawiki.vim' + +function PluginsLocalConfig() + " Reduce load on memory by updating one plugin at a time + "let g:plug_threads = 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 +endfunction + +" vim:ft=vim