mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
bufferline: fixed default (#152)
* bufferline: fixed default * bufferline: fixed default for highlights
This commit is contained in:
parent
9cca0b1fc9
commit
e5ef91be0b
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ let
|
|||
};
|
||||
};
|
||||
}));
|
||||
default = null;
|
||||
default = { };
|
||||
};
|
||||
in
|
||||
{
|
||||
|
@ -163,7 +163,7 @@ in
|
|||
default = null;
|
||||
};
|
||||
indicator = mkOption {
|
||||
default = null;
|
||||
default = { };
|
||||
type = types.nullOr (types.submodule ({ ... }: {
|
||||
options = {
|
||||
icon = mkOption {
|
||||
|
@ -178,7 +178,7 @@ in
|
|||
}));
|
||||
};
|
||||
highlights = mkOption {
|
||||
default = null;
|
||||
default = { };
|
||||
type = types.nullOr (types.submodule ({ ... }: {
|
||||
options = {
|
||||
fill = highlight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue