Switching to FZF
This commit is contained in:
parent
ccf3304f80
commit
7d6a198405
1 changed files with 8 additions and 8 deletions
16
vimrc
16
vimrc
|
|
@ -14,6 +14,7 @@ Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-endwise'
|
Plug 'tpope/vim-endwise'
|
||||||
Plug 'tpope/vim-vinegar'
|
Plug 'tpope/vim-vinegar'
|
||||||
Plug 'tpope/vim-characterize'
|
Plug 'tpope/vim-characterize'
|
||||||
|
Plug 'tpope/vim-speeddating'
|
||||||
Plug 'tpope/vim-jdaddy'
|
Plug 'tpope/vim-jdaddy'
|
||||||
Plug 'tpope/vim-eunuch'
|
Plug 'tpope/vim-eunuch'
|
||||||
"Plug 'tpope/vim-unimpared'
|
"Plug 'tpope/vim-unimpared'
|
||||||
|
|
@ -26,7 +27,8 @@ Plug 'scrooloose/nerdcommenter'
|
||||||
"Plug 'w0ng/vim-hybrid'
|
"Plug 'w0ng/vim-hybrid'
|
||||||
Plug 'sickill/vim-monokai'
|
Plug 'sickill/vim-monokai'
|
||||||
"Plug 'ervandew/supertab'
|
"Plug 'ervandew/supertab'
|
||||||
Plug 'kien/ctrlp.vim'
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' }
|
||||||
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'gregsexton/MatchTag'
|
Plug 'gregsexton/MatchTag'
|
||||||
"Plug 'kana/vim-smartinput'
|
"Plug 'kana/vim-smartinput'
|
||||||
Plug 'Raimondi/delimitMate'
|
Plug 'Raimondi/delimitMate'
|
||||||
|
|
@ -68,9 +70,8 @@ call plug#end()
|
||||||
|
|
||||||
" mouse
|
" mouse
|
||||||
if has("mouse")
|
if has("mouse")
|
||||||
set mouse=a
|
|
||||||
set ttymouse=xterm
|
|
||||||
endif
|
endif
|
||||||
|
set mouse=a
|
||||||
|
|
||||||
" general goodness
|
" general goodness
|
||||||
set shell=/bin/bash " Syntastic breaks when trying to write to /var/folders
|
set shell=/bin/bash " Syntastic breaks when trying to write to /var/folders
|
||||||
|
|
@ -187,11 +188,6 @@ nnoremap <leader>v <c-w>v<c-w>l
|
||||||
" Buffer selection
|
" Buffer selection
|
||||||
nnoremap <leader>l :ls<cr>:b<space>
|
nnoremap <leader>l :ls<cr>:b<space>
|
||||||
|
|
||||||
" Set the max files
|
|
||||||
"let g:ctrlp_max_files = 10000
|
|
||||||
let g:ctrlp_clear_cache_on_exit = 0
|
|
||||||
let g:ctrlp_cmd = 'CtrlPMixed'
|
|
||||||
|
|
||||||
" Vimux
|
" Vimux
|
||||||
nnoremap <Leader>vp :VimuxPromptCommand<CR>
|
nnoremap <Leader>vp :VimuxPromptCommand<CR>
|
||||||
nnoremap <Leader>vl :VimuxRunLastCommand<CR>
|
nnoremap <Leader>vl :VimuxRunLastCommand<CR>
|
||||||
|
|
@ -276,3 +272,7 @@ let g:airline_powerline_fonts = 1
|
||||||
" python from powerline.vim import setup as powerline_setup
|
" python from powerline.vim import setup as powerline_setup
|
||||||
" python powerline_setup()
|
" python powerline_setup()
|
||||||
" python del powerline_setup
|
" python del powerline_setup
|
||||||
|
|
||||||
|
" FZF
|
||||||
|
nnoremap <silent> <Leader>f :Files<CR>
|
||||||
|
nnoremap <silent> <Leader>b :Buffers<CR>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue