{pkgs, ...}: { plugins.lsp = { enable = true; keymaps.extra = [ { action = "LspStop"; key = "lx"; } { action = "LspStart"; key = "ls"; } { action = "LspRestart"; key = "lr"; } { action = "split | lua vim.lsp.buf.definition()"; key = "gs"; } { action = "vsplit | lua vim.lsp.buf.definition()"; key = "gv"; } { action = "tab split | lua vim.lsp.buf.definition()"; key = "gn"; } ]; keymaps.lspBuf = { "K" = "hover"; "gD" = "references"; "gd" = "definition"; "gi" = "implementation"; "gt" = "type_definition"; }; servers = { # python ruff.enable = true; pyright.enable = true; # lua (nvim config) lua-ls.enable = true; # ocaml ocamllsp.enable = true; # nix nixd = { enable = true; settings.formatting.command = ["${pkgs.alejandra}/bin/alejandra"]; }; }; }; plugins.lsp-format.enable = true; plugins.lsp-lines.enable = true; }