mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +02:00
plugins/nvim-colorizer: add missing options
Adds the always_update, virtualtext_inline and virtualtext_mode options to nvim-colorizer.
This commit is contained in:
parent
08be20270d
commit
30f3a3242e
1 changed files with 20 additions and 0 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue