You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
401 B

-- fzf.vim, fzf
-- https://github.com/junegunn/fzf.vim
-- https://github.com/junegunn/fzf
return {
"junegunn/fzf.vim",
config = function()
vim.keymap.set("n", "<C-F>", ":Rg!<CR>")
-- TODO: Use vim.keymap.set
vim.cmd("nnoremap <expr> <C-p> len(system('git rev-parse')) ? ':Files!<CR>' : ':GFiles!<CR>'")
end,
dependencies = {
{"junegunn/fzf"},
},
}