vimrc: Fix Command-T bug, add Deoplete

This commit is contained in:
Rob Watson 2021-01-17 10:14:53 +01:00
parent 03bd0e9cee
commit bbf81ac04e
1 changed files with 4 additions and 5 deletions

9
vimrc
View File

@ -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