mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-09 23:15:30 +00:00
37 lines
961 B
Nix
37 lines
961 B
Nix
{lib}:
|
|
with lib; let
|
|
diagnosticSubmodule = _: {
|
|
options = {
|
|
type = mkOption {
|
|
description = "Type of diagnostic to enable";
|
|
type = attrNames diagnostics;
|
|
};
|
|
package = mkOption {
|
|
description = "Diagnostics package";
|
|
type = types.package;
|
|
};
|
|
};
|
|
};
|
|
in {
|
|
diagnostics = {
|
|
langDesc,
|
|
diagnostics,
|
|
defaultDiagnostics,
|
|
}:
|
|
mkOption {
|
|
description = "List of ${langDesc} diagnostics to enable";
|
|
type = with types; listOf (either (enum (attrNames diagnostics)) (submodule diagnosticSubmodule));
|
|
default = defaultDiagnostics;
|
|
};
|
|
|
|
mkGrammarOption = pkgs: grammar:
|
|
mkPackageOption pkgs ["${grammar} treesitter"] {
|
|
default = ["vimPlugins" "nvim-treesitter" "builtGrammars" grammar];
|
|
};
|
|
|
|
# helper function to return the desired value based on entry type in lsp server cmd
|
|
pkgOrStr = v:
|
|
if builtins.isString v
|
|
then v
|
|
else lib.getExe v;
|
|
}
|