mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-07 11:25:06 +02:00
plugins/statuslines/lualine: fix type of color option (#200)
This commit is contained in:
parent
a87135755c
commit
8b9a3689a9
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ with lib; let
|
||||||
|
|
||||||
separator = mkSeparatorsOption {name = "Component";};
|
separator = mkSeparatorsOption {name = "Component";};
|
||||||
|
|
||||||
color = helpers.mkNullOrOption (with types; either str (attrsOf str)) ''
|
color = helpers.mkNullOrOption (types.attrsOf types.str) ''
|
||||||
Defines a custom color for the component.
|
Defines a custom color for the component.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue