tabline/bufferline: fix grammar mistakes

This commit is contained in:
diniamo 2024-06-16 20:03:09 +02:00
parent a52b29d466
commit b819a0c61d
1 changed files with 7 additions and 7 deletions

View File

@ -49,9 +49,9 @@ in {
type = bool;
default = true;
description = ''
Whether or not highlight groups to be overriden.
Whether or not to allow highlight groups to be overriden.
While false, bufferline.nvim sets highlights as default
While false, bufferline.nvim sets highlights as default.
'';
};
@ -98,7 +98,7 @@ in {
type = nullOr str;
default = null;
description = ''
The indicatotor icon to use for current buffer.
The indicatotor icon to use for the current buffer.
::: {.warning}
This **must** be ommitted while style is not `icon`
@ -167,7 +167,7 @@ in {
max_prefix_length = mkOption {
type = int;
default = 15;
description = "Length of prefix used when a buffer is de-duplicated";
description = "Length of the prefix used when a buffer is de-duplicated";
};
truncate_names = mkOption {
@ -305,7 +305,7 @@ in {
show_close_icon = mkOption {
type = bool;
default = true;
description = "Whether or not to show close icon";
description = "Whether or not to show the close icon";
};
show_tab_indicators = mkOption {
@ -317,7 +317,7 @@ in {
show_duplicate_prefix = mkOption {
type = bool;
default = true;
description = "Whether or not to show duplicate prefix";
description = "Whether or not to show duplicate buffer prefixes";
};
duplicates_across_groups = mkOption {
@ -373,7 +373,7 @@ in {
auto_toggle_bufferline = mkOption {
type = bool;
default = false;
default = true;
description = "Whether to auto toggle bufferline";
};