plugins/lsp/helpers/mkLsp: add extraConfig argument

This commit is contained in:
Gaetan Lepage 2024-04-30 22:03:20 +02:00 committed by Gaétan Lepage
parent b5dbe0bb69
commit afa64f35ee

View file

@ -7,6 +7,7 @@
cmd ? (cfg: null),
settings ? (cfg: cfg),
settingsOptions ? {},
extraConfig ? cfg: {},
...
}:
# returns a module
@ -123,6 +124,7 @@
(basePluginPath ++ ["extraSettings"])
"You can use `${basePluginPathString}.extraOptions.settings` instead."
)
(extraConfig cfg)
];
};
}