VIM: Adds fzf plugin
FZF is a fuzzy searcher that can be found here: https://github.com/junegunn/fzf I use it for a lot of things inside and outside vim
This commit is contained in:
parent
e09dac1b3c
commit
7d72ebb05a
4 changed files with 13 additions and 0 deletions
8
nvim/.config/nvim/plugin/fzf.vim
Normal file
8
nvim/.config/nvim/plugin/fzf.vim
Normal file
|
@ -0,0 +1,8 @@
|
|||
" Prefixes all of the fzf commands
|
||||
let g:fzf_command_prefix = 'Fzf'
|
||||
" Mappings for common Fzf commands
|
||||
nnoremap <leader>f = :FzfFiles<cr>
|
||||
nnoremap <leader>b = :FzfBuffers<cr>
|
||||
nnoremap <leader>h = :FzfHelptags<cr>
|
||||
" The space is important at the end of this mapping
|
||||
nnoremap <leader>/ = :FzfRg
|
Loading…
Add table
Add a link
Reference in a new issue