dotfiles/.config/nvim/lua/plugins/extras/editor/fzf/fzf-extended.lua
Sergio Laín fd95d5fd4a
feat(nvim): new extras: blink and fzf-lua extended
nvim-cmp and telescope are now longer the default plugins for lazyvim
2025-01-07 23:56:28 +01:00

18 lines
477 B
Lua

return {
{ import = "lazyvim.plugins.extras.editor.fzf" },
{
"ibhagwan/fzf-lua",
opts = {
previewers = {
builtin = {
syntax_limit_b = 1024 * 100, -- 100KB
},
},
},
keys = {
{ "<leader>sA", "<cmd>FzfLua treesitter<cr>", desc = "Treesiter Symbols" },
{ "<leader>gr", "<cmd>FzfLua git_branches<cr>", desc = "Branches" },
{ "<leader>S", "<cmd>FzfLua spell_suggest<cr>", desc = "Spelling" },
},
},
}