mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
dev use submodules for diagnostics
This commit is contained in:
parent
b90ec97fed
commit
500c9b67dd
2 changed files with 61 additions and 49 deletions
|
@ -199,18 +199,6 @@ with builtins; {
|
|||
debounceDelay = 50;
|
||||
showOnDirs = false;
|
||||
showOnOpenDirs = true;
|
||||
|
||||
icons = {
|
||||
hint = "";
|
||||
info = "";
|
||||
warning = "";
|
||||
error = "";
|
||||
};
|
||||
|
||||
severity = {
|
||||
min = "HINT";
|
||||
max = "ERROR";
|
||||
};
|
||||
};
|
||||
|
||||
type = types.submodule {
|
||||
|
@ -232,7 +220,18 @@ with builtins; {
|
|||
type = types.bool;
|
||||
};
|
||||
|
||||
icons = {
|
||||
icons = mkOption {
|
||||
description = "Icons for diagnostic severity.";
|
||||
|
||||
default = {
|
||||
hint = "";
|
||||
info = "";
|
||||
warning = "";
|
||||
error = "";
|
||||
};
|
||||
|
||||
type = types.submodule {
|
||||
options = {
|
||||
hint = mkOption {
|
||||
description = "Icon used for `hint` diagnostic.";
|
||||
type = types.str;
|
||||
|
@ -250,8 +249,19 @@ with builtins; {
|
|||
type = types.str;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
severity = {
|
||||
severity = mkOption {
|
||||
description = "Severity for which the diagnostics will be displayed";
|
||||
|
||||
default = {
|
||||
min = "HINT";
|
||||
max = "ERROR";
|
||||
};
|
||||
|
||||
type = types.submodule {
|
||||
options = {
|
||||
min = mkOption {
|
||||
description = "Minimum severity.";
|
||||
type = types.enum ["HINT" "INFO" "WARNING" "ERROR"];
|
||||
|
@ -265,6 +275,8 @@ with builtins; {
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = mkEnableOption "Git integration with icons and colors.";
|
||||
|
|
Loading…
Reference in a new issue