mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +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
|
in
|
||||||
{
|
{
|
||||||
|
@ -163,7 +163,7 @@ in
|
||||||
default = null;
|
default = null;
|
||||||
};
|
};
|
||||||
indicator = mkOption {
|
indicator = mkOption {
|
||||||
default = null;
|
default = { };
|
||||||
type = types.nullOr (types.submodule ({ ... }: {
|
type = types.nullOr (types.submodule ({ ... }: {
|
||||||
options = {
|
options = {
|
||||||
icon = mkOption {
|
icon = mkOption {
|
||||||
|
@ -178,7 +178,7 @@ in
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
highlights = mkOption {
|
highlights = mkOption {
|
||||||
default = null;
|
default = { };
|
||||||
type = types.nullOr (types.submodule ({ ... }: {
|
type = types.nullOr (types.submodule ({ ... }: {
|
||||||
options = {
|
options = {
|
||||||
fill = highlight;
|
fill = highlight;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue