Skip to content

Commit

Permalink
neovim: fix broken telescope keymaps
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Oct 22, 2024
1 parent 49545a7 commit d639092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/home/all/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ in
};
telescope = {
enable = true;
settings.keymaps = {
keymaps = {
"<leader>ff" = {
desc = "file finder";
options.desc = "file finder";
action = "find_files";
};
"<leader>fg" = {
desc = "find via grep";
options.desc = "find via grep";
action = "live_grep";
};
};
Expand Down

0 comments on commit d639092

Please sign in to comment.