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