nixos-combined-flake/modules/nixvim/plugins/lsp/lsp.nix

19 lines
370 B
Nix

{
plugins.lsp = {
enable = true;
keymaps = {
lspBuf = {
"gd" = "definition";
"gD" = "references";
"gt" = "type_definition";
"gi" = "implementation";
"K" = "hover";
"<leader>fm" = "format";
"<leader>rn" = "rename";
"<leader>ca" = "code_action";
};
};
inlayHints = true;
};
}