AutoYADM commit: 2025-01-25 17:45:03

This commit is contained in:
Daniel Fichtinger 2025-01-25 17:45:03 -05:00
parent 99c8becb9c
commit 33d566430c

View file

@ -1,12 +1,23 @@
return { return {
"ibhagwan/fzf-lua", "ibhagwan/fzf-lua",
opts = { opts = function()
files = { local actions = require("fzf-lua").actions
cwd_prompt = false, return {
find_opts = [[-type f -not -path '*/\.git/*']], actions = {
rg_opts = [[--color=never --files -g "!.git"]], ["default"] = actions.file_edit,
fd_opts = [[--color=never --type f --type l --exclude .git]], ["ctrl-s"] = actions.file_split,
}, ["ctrl-v"] = actions.file_vsplit,
-- fzf_colors = true, ["ctrl-t"] = actions.file_tabedit,
}, ["alt-q"] = actions.file_sel_to_qf,
["ctrl-p"] = actions.paste_register,
},
files = {
cwd_prompt = false,
find_opts = [[-type f -not -path '*/\.git/*']],
rg_opts = [[--color=never --files -g "!.git"]],
fd_opts = [[--color=never --type f --type l --exclude .git]],
},
-- fzf_colors = true,
}
end,
} }