{ programs.nixvim = { plugins = { lsp = { enable = true; keymaps = { silent = true; lspBuf = { "gd" = "definition"; "gD" = "declaration"; "gr" = "references"; "gI" = "implementation"; "ca" = "code_action"; "D" = "type_definition"; "rn" = "rename"; }; }; servers = { lua_ls.enable = true; nil_ls.enable = true; pyright.enable = true; }; }; }; }; }