We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08be202 commit 30f3a32Copy full SHA for 30f3a32
plugins/by-name/nvim-colorizer/default.nix
@@ -97,6 +97,26 @@ let
97
type = types.nullOr types.str;
98
default = null;
99
};
100
+ virtualtext_inline = mkOption {
101
+ description = "Display virtualtext inline with color";
102
+ type = types.nullOr types.bool;
103
+ default = null;
104
+ };
105
+ virtualtext_mode = mkOption {
106
+ description = "virtualtext highlighting mode";
107
+ type = types.nullOr (
108
+ types.enum [
109
+ "foreground"
110
+ "background"
111
+ ]
112
+ );
113
114
115
+ always_update = mkOption {
116
+ description = "update color values even if buffer is not focused";
117
118
119
120
121
in
122
{
0 commit comments