From 9a6bb716b90cdcd07502a26233201375708f8533 Mon Sep 17 00:00:00 2001 From: Vegard Bieker Matthey Date: Sun, 14 Jun 2026 00:56:57 +0200 Subject: [PATCH] neovim: add goto definition/declaration --- home/programs/neovim.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/programs/neovim.nix b/home/programs/neovim.nix index 29f4a74..44e35d5 100644 --- a/home/programs/neovim.nix +++ b/home/programs/neovim.nix @@ -71,6 +71,14 @@ action = "Telescope find_files"; key = "ff"; } + { + action = "lua vim.lsp.buf.definition()"; + key = "gd"; + } + { + action = "lua vim.lsp.buf.declaration()"; + key = "gD"; + } ]; } // lib.optionalAttrs (!stable) {