plugins: Move vim-clang away from plugins-local
[vimconf.git] / plugins-local.vim.example
1 Plug 'jamessan/vim-gnupg'
2
3 "Plug 'kien/tabman.vim'
4
5 "Plug 'chikamichi/mediawiki.vim'
6
7 function PluginsLocalConfig()
8 let g:ConqueTerm_StartMessages = 0
9
10 " Reduce load on memory by updating one plugin at a time
11 "let g:plug_threads = 1
12
13 " Configuration for youcompleteme, if not using vim-clang.
14 "let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py'
15 "let g:ycm_confirm_extra_conf = 0
16 "let g:ycm_min_num_of_chars_for_completion = 2
17 "let g:ycm_collect_identifiers_from_tags_files = 1
18 "let g:ycm_autoclose_preview_window_after_completion = 1
19 "let g:ycm_key_list_select_completion = ['<Down>']
20 "nnoremap <buffer> <leader>jd :YcmCompleter GoToDefinitionElseDeclaration<CR>
21 "let g:ycm_filetype_whitelist = { 'c' : 1, 'cpp' : 1, 'cs' : 1, 'objc' : 1, 'java' : 1, 'python' : 1 }
22
23 " Some terminals, like konsole, cause weired symbols (e.g., q) printed due to
24 " broken cursor-shape termcodes.
25 if has('nvim')
26 set guicursor=
27 " Workaround some broken plugins which set guicursor indiscriminately.
28 au OptionSet guicursor noautocmd set guicursor=
29 end
30 endfunction
31
32 " vim:ft=vim