diff --git a/plugins/lsp/helpers.nix b/plugins/lsp/helpers.nix index 31c1ab26..b7e706a6 100644 --- a/plugins/lsp/helpers.nix +++ b/plugins/lsp/helpers.nix @@ -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) ]; }; }