Skip to content

Commit

Permalink
bufferline: fixed default (nix-community#152)
Browse files Browse the repository at this point in the history
* bufferline: fixed default

* bufferline: fixed default for highlights
  • Loading branch information
Alexnortung authored Feb 14, 2023
1 parent 9cca0b1 commit e5ef91b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/bufferlines/bufferline.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let
};
};
}));
default = null;
default = { };
};
in
{
Expand Down Expand Up @@ -163,7 +163,7 @@ in
default = null;
};
indicator = mkOption {
default = null;
default = { };
type = types.nullOr (types.submodule ({ ... }: {
options = {
icon = mkOption {
Expand All @@ -178,7 +178,7 @@ in
}));
};
highlights = mkOption {
default = null;
default = { };
type = types.nullOr (types.submodule ({ ... }: {
options = {
fill = highlight;
Expand Down

0 comments on commit e5ef91b

Please sign in to comment.