zsh and nvim

This commit is contained in:
Flo
2023-02-01 13:25:23 +01:00
parent 6e93bc0868
commit 085b850d99
38 changed files with 943 additions and 0 deletions

View File

@ -0,0 +1,7 @@
nnoremap <A-g> :GFiles<CR>
nnoremap <A-z> :Files<CR>
command! -bang -nargs=? -complete=dir Files
\ call fzf#vim#files(<q-args>, {'options': ['--preview', 'preview {}']}, <bang>0)
command! -bang -nargs=? -complete=dir GFiles
\ call fzf#vim#gitfiles(<q-args>, {'options': ['--preview', 'preview {}']}, <bang>0)