Files
nix-config/modules/programs/nixvim/_nixvim-config/plugins/telescope/keymaps.nix
Weckyy702 e34b5ecce3 Update to (somewhat?) dendritic pattern
Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts.

> Atomic commits? Never heard of them!
2026-03-15 15:04:47 +01:00

25 lines
548 B
Nix

{ ... }: {
keymaps = [
{
key = "<leader>sf";
action = "<cmd>Telescope find_files<CR>";
options.desc = "[S]earch [F]iles";
}
{
key = "<leader>sg";
action = "<cmd>Telescope live_grep<CR>";
options.desc = "[S]earch by [G]rep";
}
{
key = "<leader>sw";
action = "<cmd>Telescope grep_string<CR>";
options.desc = "[S]earch current [W]ord";
}
{
key = "<leader>q";
action = "<cmd>Telescope diagnostics<CR>";
options.desc = "Lsp Diagnostics";
}
];
}