mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
This simplifies the impl by doing global on-attach logic in a `LspAttach` autocmd instead of adding lua lines to each server's individual `on_attach` callback. This is effectively a `mkAliasOptionModule` alias, other than the alias only being applied when `plugins.lsp.enable`.
243 lines
7.2 KiB
Nix
243 lines
7.2 KiB
Nix
{ lib, config, ... }:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lsp";
|
|
packPathName = "nvim-lspconfig";
|
|
package = "nvim-lspconfig";
|
|
|
|
callSetup = false;
|
|
hasSettings = false;
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
imports = [ ./language-servers ];
|
|
|
|
extraOptions = {
|
|
keymaps = {
|
|
silent = mkOption {
|
|
type = types.bool;
|
|
description = "Whether nvim-lsp keymaps should be silent";
|
|
default = false;
|
|
};
|
|
|
|
diagnostic = mkOption {
|
|
type = with types; attrsOf (either str (attrsOf anything));
|
|
description = "Mappings for `vim.diagnostic.<action>` functions to be added when an LSP is attached.";
|
|
example = {
|
|
"<leader>k" = "goto_prev";
|
|
"<leader>j" = "goto_next";
|
|
};
|
|
default = { };
|
|
};
|
|
|
|
lspBuf = mkOption {
|
|
type = with types; attrsOf (either str (attrsOf anything));
|
|
description = "Mappings for `vim.lsp.buf.<action>` functions to be added when an LSP it attached.";
|
|
example = {
|
|
"gd" = "definition";
|
|
"gD" = "references";
|
|
"gt" = "type_definition";
|
|
"gi" = "implementation";
|
|
"K" = "hover";
|
|
};
|
|
default = { };
|
|
};
|
|
|
|
extra = mkOption {
|
|
type = types.listOf lib.nixvim.keymaps.deprecatedMapOptionSubmodule;
|
|
apply = map lib.nixvim.keymaps.removeDeprecatedMapAttrs;
|
|
description = ''
|
|
Extra keymaps to register when an LSP is attached.
|
|
This can be used to customise LSP behaviour, for example with "telescope" or the "Lspsaga" plugin, as seen in the examples.
|
|
'';
|
|
example = [
|
|
{
|
|
key = "<leader>lx";
|
|
action = "<CMD>LspStop<Enter>";
|
|
}
|
|
{
|
|
key = "<leader>ls";
|
|
action = "<CMD>LspStart<Enter>";
|
|
}
|
|
{
|
|
key = "<leader>lr";
|
|
action = "<CMD>LspRestart<Enter>";
|
|
}
|
|
{
|
|
key = "gd";
|
|
action.__raw = "require('telescope.builtin').lsp_definitions";
|
|
}
|
|
{
|
|
key = "K";
|
|
action = "<CMD>Lspsaga hover_doc<Enter>";
|
|
}
|
|
];
|
|
default = [ ];
|
|
};
|
|
};
|
|
|
|
enabledServers = mkOption {
|
|
type =
|
|
with types;
|
|
listOf (submodule {
|
|
options = {
|
|
name = mkOption {
|
|
type = str;
|
|
description = "The server's name";
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
type = attrsOf anything;
|
|
description = "Extra options for the server";
|
|
};
|
|
};
|
|
});
|
|
description = "A list of enabled LSP servers. Don't use this directly.";
|
|
default = [ ];
|
|
internal = true;
|
|
visible = false;
|
|
};
|
|
|
|
inlayHints = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable LSP inlay-hints globally.
|
|
|
|
See [`:h lsp-inlay_hint`](https://neovim.io/doc/user/lsp.html#lsp-inlay_hint).
|
|
'';
|
|
};
|
|
|
|
onAttach = mkOption {
|
|
type = types.lines;
|
|
description = "A lua function to be run when a new LSP buffer is attached. The argument `client` and `bufnr` is provided.";
|
|
default = "";
|
|
# When `plugins.lsp` is enabled, definitions are aliased to `lsp.onAttach`; so read that final value here.
|
|
# The other half of this two-way alias is below in `extraConfig`.
|
|
apply = value: if config.plugins.lsp.enable then config.lsp.onAttach else value;
|
|
};
|
|
|
|
capabilities = mkOption {
|
|
type = types.lines;
|
|
description = "Lua code that modifies inplace the `capabilities` table.";
|
|
default = "";
|
|
};
|
|
|
|
setupWrappers = mkOption {
|
|
type = with types; listOf (functionTo str);
|
|
description = "Code to be run to wrap the setup args. Takes in an argument containing the previous results, and returns a new string of code.";
|
|
default = [ ];
|
|
};
|
|
|
|
preConfig = mkOption {
|
|
type = types.lines;
|
|
description = "Code to be run before loading the LSP. Useful for requiring plugins";
|
|
default = "";
|
|
};
|
|
|
|
postConfig = mkOption {
|
|
type = types.lines;
|
|
description = "Code to be run after loading the LSP. This is an internal option";
|
|
default = "";
|
|
};
|
|
};
|
|
|
|
extraConfig = cfg: opts: {
|
|
keymapsOnEvents.LspAttach =
|
|
let
|
|
mkMaps =
|
|
prefix: descPrefix:
|
|
lib.mapAttrsToList (
|
|
key: action:
|
|
let
|
|
actionStr = action.action or action;
|
|
mode = action.mode or "n";
|
|
actionProps = lib.optionalAttrs (builtins.isAttrs action) (
|
|
builtins.removeAttrs action [
|
|
"action"
|
|
"mode"
|
|
]
|
|
);
|
|
in
|
|
{
|
|
inherit key mode;
|
|
action = lib.nixvim.mkRaw (prefix + actionStr);
|
|
|
|
options = {
|
|
inherit (cfg.keymaps) silent;
|
|
desc = "${descPrefix} ${actionStr}";
|
|
} // actionProps;
|
|
}
|
|
);
|
|
in
|
|
mkMaps "vim.diagnostic." "Lsp diagnostic" cfg.keymaps.diagnostic
|
|
++ mkMaps "vim.lsp.buf." "Lsp buf" cfg.keymaps.lspBuf
|
|
++ cfg.keymaps.extra;
|
|
|
|
# Alias onAttach definitions to the new impl in the top-level lsp module.
|
|
#
|
|
# NOTE: While `mkDerivedConfig` creates an alias based on the final `value` and `highestPrio`,
|
|
# `mkAliasAndWrapDefinitions` and `mkAliasAndWrapDefsWithPriority` propagates the un-merged
|
|
# `definitions`.
|
|
#
|
|
# This assumes both options have compatible merge functions, but it allows override and order
|
|
# priorities to be merged correctly.
|
|
#
|
|
# E.g:
|
|
# lsp.onAttach = mkAfter "world";
|
|
# plugins.lsp.onAttach = mkBefore "hello"
|
|
# ⇒
|
|
# hello
|
|
# world
|
|
#
|
|
# This is equivalent to `mkAliasOptionModule`, except predicated on `plugins.lsp.enable`.
|
|
#
|
|
# The other half of this two-way alias is above in the option's `apply` function.
|
|
lsp.onAttach = lib.modules.mkAliasAndWrapDefsWithPriority lib.id opts.onAttach;
|
|
|
|
plugins.lsp.luaConfig.content =
|
|
let
|
|
runWrappers =
|
|
wrappers: s:
|
|
if wrappers == [ ] then s else (builtins.head wrappers) (runWrappers (builtins.tail wrappers) s);
|
|
in
|
|
''
|
|
-- nvim-lspconfig {{{
|
|
do
|
|
${cfg.preConfig}
|
|
|
|
-- inlay hint
|
|
${lib.optionalString cfg.inlayHints "vim.lsp.inlay_hint.enable(true)"}
|
|
|
|
local __lspServers = ${lib.nixvim.toLuaObject cfg.enabledServers}
|
|
|
|
local __lspCapabilities = function()
|
|
capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
${cfg.capabilities}
|
|
|
|
return capabilities
|
|
end
|
|
|
|
local __setup = ${runWrappers cfg.setupWrappers "{ capabilities = __lspCapabilities() }"}
|
|
|
|
for i, server in ipairs(__lspServers) do
|
|
local options = ${runWrappers cfg.setupWrappers "server.extraOptions"}
|
|
|
|
if options == nil then
|
|
options = __setup
|
|
else
|
|
options = vim.tbl_extend("keep", options, __setup)
|
|
end
|
|
|
|
require("lspconfig")[server.name].setup(options)
|
|
end
|
|
|
|
${cfg.postConfig}
|
|
end
|
|
-- }}}
|
|
'';
|
|
};
|
|
}
|