Compare commits

..

2 Commits

Author SHA1 Message Date
diniamo cb2a94a76f tabline/bufferline: fix default mode 2024-06-16 19:01:41 +02:00
Ching Pei Yang d10b1fc366 lib/lua: picked wrong conflict version 2024-06-16 18:31:41 +02:00
2 changed files with 2 additions and 5 deletions

View File

@ -79,10 +79,7 @@ in rec {
then toLuaObject v
else "[${toLuaObject n}] = " + (toLuaObject v))
(filterAttrs
(
_: v:
(v != null) && (toLuaObject v != "{}")
)
(_: v: v != null)
args)))
+ "}"
else if isList args

View File

@ -23,7 +23,7 @@ in {
setupOpts = mkPluginSetupOption "Bufferline-nvim" {
mode = mkOption {
type = enum ["tabs" "buffers"];
default = "tabs";
default = "buffers";
description = "Mode to use for bufferline";
};