Add fzf plugin
This commit is contained in:
parent
e53aba897a
commit
595e831860
12
init.vim
12
init.vim
@ -23,6 +23,12 @@ else
|
|||||||
\ 'do': 'bash install.sh',
|
\ 'do': 'bash install.sh',
|
||||||
\ }
|
\ }
|
||||||
end
|
end
|
||||||
|
Plug 'junegunn/fzf'
|
||||||
|
if has("win32")
|
||||||
|
if hostname == "perryWin64"
|
||||||
|
Plug 'F:\Tools\fzf_win\'
|
||||||
|
end
|
||||||
|
end
|
||||||
Plug 'Shougo/echodoc.vim'
|
Plug 'Shougo/echodoc.vim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
" =============Settings==================
|
" =============Settings==================
|
||||||
@ -158,3 +164,9 @@ let g:LanguageClient_hasClientSupport = 0
|
|||||||
set cmdheight=2
|
set cmdheight=2
|
||||||
let g:echodoc#enable_at_startup = 1
|
let g:echodoc#enable_at_startup = 1
|
||||||
let g:echodoc#type = 'signature'
|
let g:echodoc#type = 'signature'
|
||||||
|
" ===================FZF=============================
|
||||||
|
nnoremap <C-P> :FZF<CR>
|
||||||
|
let g:fzf_action = {
|
||||||
|
\ 'enter': 'tab split',
|
||||||
|
\ 'ctrl-x': 'split',
|
||||||
|
\ 'ctrl-v': 'vsplit' }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user