chore(vim): remove FZF vim

This commit is contained in:
Stefan Imhoff
2021-12-11 13:43:15 +01:00
parent a2f7493b38
commit 4c0d2b54c6
2 changed files with 0 additions and 21 deletions

View File

@@ -13,9 +13,7 @@ call plug#begin(data_dir . '/plugins')
" Base16 for Vim
Plug 'chriskempson/base16-vim'
" A command-line fuzzy finder
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
" Tpope
Plug 'tpope/vim-abolish'

View File

@@ -1,19 +0,0 @@
" Key bindings
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit' }
" Popup window centered on the screen
let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } }
" Enable per-command history
let g:fzf_history_dir = '~/.local/share/fzf-history'
" Mappings
map <C-f> :Files<CR>
map <leader>b :Buffers<CR>
nnoremap <leader>r :Rg<CR>
nnoremap <leader>gs :GFiles?<CR>
nnoremap <leader>t :Tags<CR>
nnoremap <leader>m :Marks<CR>