vimrc: Fix Command-T bug, add Deoplete
This commit is contained in:
parent
03bd0e9cee
commit
bbf81ac04e
9
vimrc
9
vimrc
|
@ -50,7 +50,7 @@ set ttymouse=sgr
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set mousemodel=popup_setpos
|
set mousemodel=popup_setpos
|
||||||
set lazyredraw
|
set lazyredraw
|
||||||
set completeopt=menu,menuone,popup,longest
|
set completeopt=menu,menuone,preview,longest
|
||||||
set timeoutlen=600
|
set timeoutlen=600
|
||||||
set ballooneval
|
set ballooneval
|
||||||
set balloonevalterm
|
set balloonevalterm
|
||||||
|
@ -118,6 +118,9 @@ endfunction
|
||||||
map <Leader>* :call RequestGrep()<CR>
|
map <Leader>* :call RequestGrep()<CR>
|
||||||
map <Leader>8 :call RequestGrep()<CR>
|
map <Leader>8 :call RequestGrep()<CR>
|
||||||
|
|
||||||
|
" deoplete configuration
|
||||||
|
let g:deoplete#enable_at_startup = 1
|
||||||
|
|
||||||
" vim-markdown configuration:
|
" vim-markdown configuration:
|
||||||
let g:vim_markdown_conceal = 1
|
let g:vim_markdown_conceal = 1
|
||||||
|
|
||||||
|
@ -132,10 +135,6 @@ let g:CommandTGitScanSubmodules=1
|
||||||
let g:CommandTGitIncludeUntracked=1
|
let g:CommandTGitIncludeUntracked=1
|
||||||
let g:CommandTMatchWindowAtTop=0
|
let g:CommandTMatchWindowAtTop=0
|
||||||
let g:CommandTMaxHeight=20
|
let g:CommandTMaxHeight=20
|
||||||
" See :h command-t-faq
|
|
||||||
if &term =~ "xterm" || &term =~ "screen"
|
|
||||||
let g:CommandTCancelMap = ['<ESC>', '<C-c>']
|
|
||||||
end
|
|
||||||
|
|
||||||
" Lightline configuration:
|
" Lightline configuration:
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
|
|
Loading…
Reference in New Issue