nixvimConfigs/fiesta/setups/fuzzy-finder: update keybindings

This commit is contained in:
Gabriel Arazas 2024-12-12 10:12:15 +08:00
parent 2747af64bc
commit f8c56ba712
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -56,11 +56,11 @@ in
end end
''; '';
}; };
"g" = { "v" = {
options.desc = "Find files tracked by Git"; options.desc = "Find files tracked by Git";
action = helpers.mkRaw "require('telescope.builtin').git_files"; action = helpers.mkRaw "require('telescope.builtin').git_files";
}; };
"G" = { "g" = {
options.desc = "Live grep for the whole project"; options.desc = "Live grep for the whole project";
action = helpers.mkRaw "require('telescope.builtin').live_grep"; action = helpers.mkRaw "require('telescope.builtin').live_grep";
}; };