mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 19:40:06 +02:00
plugins/lsp: use attrsOf anything
instead of attrs
for extraOptions (#1235)
`attrs` is not merged correctly, this can introduce conflicts with efmls-configs for example when trying to register `efm` sources not defined by efmls-configs.
This commit is contained in:
parent
07c34e8cfa
commit
8569b5c550
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@
|
|||
|
||||
extraOptions = mkOption {
|
||||
default = {};
|
||||
type = types.attrs;
|
||||
type = types.attrsOf types.anything;
|
||||
description = "Extra options for the ${name} language server.";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue