mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-30 14:49:44 +02:00
plugins/lsp: Use the auto-generated lsp plugin list
This commit is contained in:
parent
c79bfb75da
commit
8e8d9afe8e
11 changed files with 172 additions and 679 deletions
|
@ -58,7 +58,8 @@ in
|
|||
|
||||
cmd = mkOption {
|
||||
type = with types; nullOr (listOf str);
|
||||
default = if (cfg.package or null) != null then cmd cfg else null;
|
||||
default =
|
||||
if (cfg.package or null) != null then if builtins.isFunction cmd then cmd cfg else cmd else null;
|
||||
description = ''
|
||||
A list where each entry corresponds to the blankspace delimited part of the command that
|
||||
launches the server.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue