diff --git a/vim/.vimrc b/vim/.vimrc index 75708be..017ba53 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,32 +1,10 @@ if ($TERM=~"xterm-256color" || $TERM=~"screen-256color") call plug#begin('~/.vim/plugged') Plug 'airblade/vim-gitgutter' - Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } - Plug 'junegunn/fzf.vim' Plug 'romainl/flattened' Plug 'tpope/vim-eunuch' call plug#end() - let $FZF_DEFAULT_COMMAND = 'find .' - let g:fzf_colors = - \ { 'fg': ['fg', 'Normal'], - \ 'bg': ['bg', 'Normal'], - \ 'fg+': ['fg', 'Normal'], - \ 'bg+': ['bg', 'CursorLine'], - \ 'hl': ['fg', 'Error'], - \ 'hl+': ['fg', 'Error'], - \ 'pointer': ['fg', 'Normal'], - \ 'info': ['fg', 'Comment'], - \ 'prompt': ['fg', 'Normal'], - \ 'spinner': ['fg', 'Normal'], - \ 'border': ['fg', 'StatusLine'], - \ 'header': ['fg', 'Normal']} - if has('nvim') - autocmd! FileType fzf - autocmd FileType fzf set laststatus=0 noshowmode noruler - \| autocmd BufLeave set laststatus=2 showmode ruler - endif - colorscheme flattened_light endif @@ -61,8 +39,6 @@ nnoremap s \ else \ syntax enable \ endif -nnoremap f :FZF -nnoremap b :Buffers nnoremap gB :bp nnoremap gb :bn