From a3038b697d5e9efb7655d06dc07e54312913a18a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 26 Nov 2024 11:24:25 +0300 Subject: [PATCH] treewide: find and fix more typos --- modules/plugins/languages/rust.nix | 2 +- modules/plugins/lsp/null-ls/null-ls.nix | 2 +- modules/plugins/lsp/otter/otter.nix | 2 +- .../tabline/nvim-bufferline/nvim-bufferline.nix | 13 +------------ 4 files changed, 4 insertions(+), 15 deletions(-) diff --git a/modules/plugins/languages/rust.nix b/modules/plugins/languages/rust.nix index 9a38889..f026299 100644 --- a/modules/plugins/languages/rust.nix +++ b/modules/plugins/languages/rust.nix @@ -89,7 +89,7 @@ in { }; package = mkOption { - description = "lldb pacakge"; + description = "lldb package"; type = package; default = pkgs.lldb; }; diff --git a/modules/plugins/lsp/null-ls/null-ls.nix b/modules/plugins/lsp/null-ls/null-ls.nix index 7de46a5..3730554 100644 --- a/modules/plugins/lsp/null-ls/null-ls.nix +++ b/modules/plugins/lsp/null-ls/null-ls.nix @@ -22,7 +22,7 @@ in { default_timeout = mkOption { type = int; default = 5000; - description = "Default timeout value, in miliseconds"; + description = "Default timeout value, in milliseconds"; }; sources = mkOption { diff --git a/modules/plugins/lsp/otter/otter.nix b/modules/plugins/lsp/otter/otter.nix index 79797aa..0b0c2c4 100644 --- a/modules/plugins/lsp/otter/otter.nix +++ b/modules/plugins/lsp/otter/otter.nix @@ -31,7 +31,7 @@ in { description = '' if set to true, the filetype of the otterbuffers will be set. Other wide only the autocommand of lspconfig that attaches the language server will be - executed without stting the filetype + executed without setting the filetype ''; }; write_to_disk = mkOption { diff --git a/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix b/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix index 54ae5fe..dc32226 100644 --- a/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix +++ b/modules/plugins/tabline/nvim-bufferline/nvim-bufferline.nix @@ -49,7 +49,7 @@ in { type = bool; default = true; description = '' - Whether or not to allow highlight groups to be overriden. + Whether or not to allow highlight groups to be overridden. While false, bufferline.nvim sets highlights as default. ''; @@ -338,17 +338,6 @@ in { description = "Whether or not the move command \"wraps\" at the first or last position"; }; - separator_style = mkOption { - type = either (enum ["thick" "thin" "slope" "slant"]) (listOf str); - default = [" " " "]; - description = '' - Style of the buffer separator. - - Can be either one of the suspported values, or a list containing - **at most** two elements for `focused` and `unfocused` respectively. - ''; - }; - separator_style = mkOption { type = nullOr (either (enum ["slant" "padded_slant" "slope" "padded_slope" "thick" "thin"]) (listOf str)); default = "thin";