mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
fixup! tabline/bufferline: add separator_style
This commit is contained in:
parent
7df75f5b55
commit
d9a62eff17
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{lib, ...}: let
|
{lib, ...}: let
|
||||||
inherit (lib.options) mkOption mkEnableOption literalExpression;
|
inherit (lib.options) mkOption mkEnableOption literalExpression;
|
||||||
inherit (lib.types) enum bool either nullOr str int listOf attrs list;
|
inherit (lib.types) enum bool either nullOr str int listOf attrs;
|
||||||
inherit (lib.generators) mkLuaInline;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.binds) mkMappingOption;
|
inherit (lib.nvim.binds) mkMappingOption;
|
||||||
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
inherit (lib.nvim.types) mkPluginSetupOption luaInline;
|
||||||
|
@ -350,7 +350,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
separator_style = mkOption {
|
separator_style = mkOption {
|
||||||
type = enum ["slant" "slope" "thick" "thin" list];
|
type = nullOr (either (enum ["slant" "slope" "thick" "thin"]) (listOf str));
|
||||||
default = "thin";
|
default = "thin";
|
||||||
description = ''
|
description = ''
|
||||||
The type of separator used to separate buffers and tabs.
|
The type of separator used to separate buffers and tabs.
|
||||||
|
|
Loading…
Reference in a new issue