mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
lib/options (mkSettingsOption): allow more types for settingsOption when no sub-options are explicitly declared
This commit is contained in:
parent
4439dd85cd
commit
ecb75f49d1
2 changed files with 19 additions and 5 deletions
|
|
@ -179,6 +179,12 @@ in
|
|||
settings = lib.nixvim.mkSettingsOption {
|
||||
description = "The settings for this LSP.";
|
||||
options = settingsOptions;
|
||||
|
||||
# Some servers declare settings sub-options without using `settingsOptions`.
|
||||
# This leads the `settings` option to not be typed as a submodule.
|
||||
# Hence, we force all `plugins.lsp.<name>.settings` options to be types as submodules.
|
||||
# FIXME This is not ideal, but `plugins.lsp` will be dropped entirely in a few months.
|
||||
submoduleType = true;
|
||||
};
|
||||
|
||||
extraOptions = mkOption {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue