mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/lsp: Fix extra config of lsp servers
This commit is contained in:
parent
2017830a2c
commit
31eb9d8d75
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ in
|
||||||
(mkRemovedOptionModule (
|
(mkRemovedOptionModule (
|
||||||
basePluginPath ++ [ "extraSettings" ]
|
basePluginPath ++ [ "extraSettings" ]
|
||||||
) "You can use `${basePluginPathString}.extraOptions.settings` instead.")
|
) "You can use `${basePluginPathString}.extraOptions.settings` instead.")
|
||||||
(extraConfig cfg)
|
(lib.mkIf cfg.enable (extraConfig cfg))
|
||||||
]
|
]
|
||||||
# Add an alias (with warning) for the lspconfig server name, if different to `name`.
|
# Add an alias (with warning) for the lspconfig server name, if different to `name`.
|
||||||
# Note: users may use lspconfig's docs to guess the `plugins.lsp.servers.*` name
|
# Note: users may use lspconfig's docs to guess the `plugins.lsp.servers.*` name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue