neovim: add goto definition/declaration

This commit is contained in:
2026-06-14 00:56:57 +02:00
parent 56ba34a43e
commit 9a6bb716b9
+8
View File
@@ -71,6 +71,14 @@
action = "<cmd>Telescope find_files<CR>";
key = "<leader>ff";
}
{
action = "<cmd>lua vim.lsp.buf.definition()<CR>";
key = "<leader>gd";
}
{
action = "<cmd>lua vim.lsp.buf.declaration()<CR>";
key = "<leader>gD";
}
];
}
// lib.optionalAttrs (!stable) {