mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
Upstream still documents the now-deprecated `require("lspconfig").<name>.setup` mechanism. I believe the modern alternative is to register a `LspAttach` autocmd. For more context, see: - https://github.com/lukas-reineke/lsp-format.nvim/issues/98 - https://github.com/lukas-reineke/lsp-format.nvim/pull/99
130 lines
3.5 KiB
Nix
130 lines
3.5 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lsp-format";
|
|
packPathName = "lsp-format.nvim";
|
|
package = "lsp-format-nvim";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
# TODO: added 10-22-2024 remove after 24.11
|
|
deprecateExtraOptions = true;
|
|
imports = [
|
|
(lib.mkRenamedOptionModule
|
|
[
|
|
"plugins"
|
|
"lsp-format"
|
|
"setup"
|
|
]
|
|
[
|
|
"plugins"
|
|
"lsp-format"
|
|
"settings"
|
|
]
|
|
)
|
|
];
|
|
|
|
description = ''
|
|
## Configuring a Language
|
|
|
|
`lsp-format` uses a table defining which lsp servers to use for each language.
|
|
|
|
|
|
- `exclude` is a table of LSP servers that should not format the buffer.
|
|
- Alternatively, you can also just not call `on_attach` for the clients you don't want to use for
|
|
formatting.
|
|
- `order` is a table that determines the order formatting is requested from the LSP server.
|
|
- `sync` turns on synchronous formatting. The editor will block until the formatting is done.
|
|
- `force` will write the format result to the buffer, even if the buffer changed after the format request started.
|
|
'';
|
|
|
|
settingsExample = {
|
|
go = {
|
|
exclude = [ "gopls" ];
|
|
order = [
|
|
"gopls"
|
|
"efm"
|
|
];
|
|
sync = true;
|
|
force = true;
|
|
};
|
|
typescript = {
|
|
tab_width.__raw = ''
|
|
function()
|
|
return vim.opt.shiftwidth:get()
|
|
end'';
|
|
};
|
|
yaml = {
|
|
tab_width = 2;
|
|
};
|
|
};
|
|
|
|
extraOptions = {
|
|
lspServersToEnable = lib.mkOption {
|
|
type =
|
|
with lib.types;
|
|
either (enum [
|
|
"none"
|
|
"all"
|
|
]) (listOf str);
|
|
default = "all";
|
|
description = ''
|
|
Choose the LSP servers for which lsp-format should be enabled.
|
|
|
|
Possible values:
|
|
- "all" (default): Enable formatting for all language servers
|
|
- "none": Do not enable formatting on any language server.
|
|
You might choose this if for some reason you want to manually call
|
|
`require("lsp-format").on_attach(client)`.
|
|
- list of LS names: Manually choose the servers by name
|
|
'';
|
|
example = [
|
|
"efm"
|
|
"gopls"
|
|
];
|
|
};
|
|
};
|
|
|
|
extraConfig = cfg: {
|
|
warnings = lib.nixvim.mkWarnings "plugins.lsp-format" {
|
|
when = !(config.plugins.lsp.enable || config.plugins.lspconfig.enable);
|
|
message = ''
|
|
This plugin requires either `plugins.lsp` or `plugins.lspconfig` to be enabled.
|
|
'';
|
|
};
|
|
|
|
autoGroups.nixvim_lsp_fmt_setup.clear = false;
|
|
|
|
autoCmd = lib.optionals (cfg.lspServersToEnable != "none") [
|
|
{
|
|
desc = "set up autoformatting on LSP attach";
|
|
event = "LspAttach";
|
|
group = "nixvim_lsp_fmt_setup";
|
|
callback =
|
|
let
|
|
enableCondition =
|
|
if cfg.lspServersToEnable == "all" then
|
|
"true"
|
|
else if lib.isList cfg.lspServersToEnable then
|
|
# Lua
|
|
"vim.list_contains(${lib.nixvim.toLuaObject cfg.lspServersToEnable}, client.name)"
|
|
else
|
|
throw "Unhandled value for `lspServersToEnable`: ${
|
|
lib.generators.toPretty { } cfg.lspServersToEnable
|
|
}";
|
|
in
|
|
lib.nixvim.mkRaw ''
|
|
function(args)
|
|
local client = assert(vim.lsp.get_client_by_id(args.data.client_id))
|
|
if ${enableCondition} then
|
|
require("lsp-format").on_attach(client, args.buf)
|
|
end
|
|
end
|
|
'';
|
|
}
|
|
];
|
|
};
|
|
}
|