2026-01-29

This commit is contained in:
Weckyy702
2026-01-29 14:19:33 +01:00
parent 6485cb234f
commit 6deaef9abf
9 changed files with 180 additions and 119 deletions

View File

@@ -0,0 +1,16 @@
{...}: {
programs.nixvim.keymaps = [
{
key = "grd";
action = "<cmd>Telescope lsp_definitions<CR>";
mode = "n";
options.desc = "LSP: [G]oto [D]efinition";
}
{
key = "gri";
action = "<cmd>Telescope lsp_implementations<CR>";
mode = "n";
options.desc = "LSP: [G]oto [I]mplementations";
}
];
}