Update vimrc
This commit is contained in:
parent
0403e7ef1f
commit
4a2dcce7b2
|
@ -35,6 +35,7 @@ let g:go_echo_command_info = 0
|
|||
let g:go_echo_go_info = 0
|
||||
let g:go_highlight_diagnostic_errors = 0
|
||||
let g:go_highlight_diagnostic_warnings = 0
|
||||
let g:go_highlight_trailing_whitespace_error=0
|
||||
|
||||
" g:go_statusline_duration doesn't seem to work accurately, but does help
|
||||
" reduce the time the build/test success messages are shown in the status
|
||||
|
|
3
vimrc
3
vimrc
|
@ -149,7 +149,7 @@ let g:deoplete#enable_at_startup = 1
|
|||
call deoplete#custom#option('num_processes', 1)
|
||||
call deoplete#custom#option('max_list', 30)
|
||||
call deoplete#custom#option('auto_complete_delay', 25)
|
||||
call deoplete#custom#option('auto_refresh_delay', 250)
|
||||
call deoplete#custom#option('auto_refresh_delay', 50)
|
||||
call deoplete#custom#option('refresh_always', v:false)
|
||||
call deoplete#custom#option('prev_completion_mode', 'length')
|
||||
call deoplete#custom#option('omni_patterns', {
|
||||
|
@ -158,7 +158,6 @@ call deoplete#custom#option('omni_patterns', {
|
|||
" <TAB>: completion.
|
||||
inoremap <expr><S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
|
||||
inoremap <expr><Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
||||
inoremap <expr><C-]> pumvisible() ? "\<C-]>" : "\<Enter>"
|
||||
|
||||
" vim-markdown configuration:
|
||||
let g:vim_markdown_conceal = 1
|
||||
|
|
Loading…
Reference in New Issue