From e5ef91be0b8eba1014fd8521e6316597762c7f4f Mon Sep 17 00:00:00 2001 From: Alexander Nortung Date: Tue, 14 Feb 2023 20:49:19 +0100 Subject: [PATCH] bufferline: fixed default (#152) * bufferline: fixed default * bufferline: fixed default for highlights --- plugins/bufferlines/bufferline.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/bufferlines/bufferline.nix b/plugins/bufferlines/bufferline.nix index 46d065d2..e6268339 100644 --- a/plugins/bufferlines/bufferline.nix +++ b/plugins/bufferlines/bufferline.nix @@ -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;