Files
DCGOS/home/nixvim/plugins/lsp/lsp.nix
2025-09-21 15:54:31 +08:00

25 lines
407 B
Nix

{
plugins = {
lsp-signature.enable = true;
lsp = {
enable = true;
servers.typos_lsp.enable = true;
keymaps.lspBuf = {
"<c-k>" = "signature_help";
"gi" = "implementation";
};
};
lint.enable = true;
};
keymaps = [
{
mode = "n";
key = "<leader>cl";
action = "<cmd>LspInfo<cr>";
options.desc = "Lsp Info";
}
];
}