mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-17 22:41:13 +01:00
modules/lsp/servers: simplify activate default
The default for `lsp.servers.<name>.activate` used to be conditional on whether `name == "*"`. This is leftover from before the * server was moved to its own `global-server.nix` module and can now be removed.
This commit is contained in:
parent
d524dbd333
commit
753f7640d6
1 changed files with 1 additions and 4 deletions
|
|
@ -36,10 +36,7 @@ in
|
|||
description = ''
|
||||
Whether to call `vim.lsp.enable()` for ${displayName}.
|
||||
'';
|
||||
default = config.name != "*";
|
||||
defaultText = lib.literalMD ''
|
||||
`true`, unless the server's `name` is `*`
|
||||
'';
|
||||
default = true;
|
||||
example = false;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue