fix: descriptions fit into documentations standards

This commit is contained in:
Ladas552 2025-08-10 21:09:09 +05:00
commit 2330091cea

View file

@ -114,13 +114,13 @@ in {
auto_set_highlight_group = mkOption { auto_set_highlight_group = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Automatically set the highlight group for the current line."; description = "Whether to automatically set the highlight group for the current line.";
}; };
auto_set_keymaps = mkOption { auto_set_keymaps = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Automatically set the keymap for the current line."; description = "Whether to automatically set the keymap for the current line.";
}; };
auto_apply_diff_after_generation = auto_apply_diff_after_generation =
@ -128,19 +128,19 @@ in {
support_paste_from_clipboard = mkEnableOption '' support_paste_from_clipboard = mkEnableOption ''
support pasting image from clipboard. support pasting image from clipboard.
This will be determined automatically based whether img-clip is available or not. This will be determined automatically based whether img-clip is available or not
''; '';
minimize_diff = mkOption { minimize_diff = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Remove unchanged lines when applying a code block."; description = "Whether to remove unchanged lines when applying a code block.";
}; };
enable_token_counting = mkOption { enable_token_counting = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Token counting."; description = "Whether to enable token counting.";
}; };
enable_cursor_planning_mode = enable_cursor_planning_mode =
@ -204,7 +204,7 @@ in {
wrap = mkOption { wrap = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Similar to vim.o.wrap."; description = "Whether to enable wrap, similar to vim.o.wrap.";
}; };
width = mkOption { width = mkOption {
@ -217,7 +217,7 @@ in {
enabled = mkOption { enabled = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Enable the sidebar header."; description = "Whether to enable the sidebar header.";
}; };
align = mkOption { align = mkOption {
@ -229,7 +229,7 @@ in {
rounded = mkOption { rounded = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Enable rounded sidebar header."; description = "Whether to enable rounded sidebar header.";
}; };
}; };
@ -292,7 +292,7 @@ in {
autojump = mkOption { autojump = mkOption {
type = bool; type = bool;
default = true; default = true;
description = "Automatically jumps to the next change."; description = "Whether to automatically jump to the next change.";
}; };
override_timeoutlen = mkOption { override_timeoutlen = mkOption {