plugins/nvim-colorizer: add missing options

Adds the always_update, virtualtext_inline and virtualtext_mode options
to nvim-colorizer.
This commit is contained in:
ProbablyRohan 2024-12-08 20:47:21 +11:00
parent 08be20270d
commit 30f3a3242e

View file

@ -97,6 +97,26 @@ let
type = types.nullOr types.str;
default = null;
};
virtualtext_inline = mkOption {
description = "Display virtualtext inline with color";
type = types.nullOr types.bool;
default = null;
};
virtualtext_mode = mkOption {
description = "virtualtext highlighting mode";
type = types.nullOr (
types.enum [
"foreground"
"background"
]
);
default = null;
};
always_update = mkOption {
description = "update color values even if buffer is not focused";
type = types.nullOr types.bool;
default = null;
};
};
in
{