mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-08 18:11:07 +01:00
treewide: fix typos
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
03a51dbf3d
commit
ee32f43f54
7 changed files with 11 additions and 11 deletions
|
|
@ -91,7 +91,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
options.timeout = lib.nixvim.defaultNullOpts.mkInt 5000 ''
|
options.timeout = lib.nixvim.defaultNullOpts.mkInt 5000 ''
|
||||||
Max amount of time in ms to wait between spaning the executable and connecting to the pipe.
|
Max amount of time in ms to wait between spanning the executable and connecting to the pipe.
|
||||||
This gives the executable time to create the pipe
|
This gives the executable time to create the pipe
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -61,23 +61,23 @@ let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
annote_style = defaultNullOpts.mkStr "Question" ''
|
annote_style = defaultNullOpts.mkStr "Question" ''
|
||||||
Default style used to highlight item annotes.
|
Default style used to highlight item annotates.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
debug_style = lib.nixvim.mkNullOrOption types.str ''
|
debug_style = lib.nixvim.mkNullOrOption types.str ''
|
||||||
Style used to highlight debug item annotes.
|
Style used to highlight debug item annotates.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
info_style = lib.nixvim.mkNullOrOption types.str ''
|
info_style = lib.nixvim.mkNullOrOption types.str ''
|
||||||
Style used to highlight info item annotes.
|
Style used to highlight info item annotates.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
warn_style = lib.nixvim.mkNullOrOption types.str ''
|
warn_style = lib.nixvim.mkNullOrOption types.str ''
|
||||||
Style used to highlight warn item annotes.
|
Style used to highlight warn item annotates.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
error_style = lib.nixvim.mkNullOrOption types.str ''
|
error_style = lib.nixvim.mkNullOrOption types.str ''
|
||||||
Style used to highlight error item annotes.
|
Style used to highlight error item annotates.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
debug_annote = lib.nixvim.mkNullOrOption types.str ''
|
debug_annote = lib.nixvim.mkNullOrOption types.str ''
|
||||||
|
|
|
||||||
|
|
@ -294,7 +294,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
min_pattern_length = lib.nixvim.defaultNullOpts.mkInt defaults.label.min_pattern_length ''
|
min_pattern_length = lib.nixvim.defaultNullOpts.mkInt defaults.label.min_pattern_length ''
|
||||||
minimum pattrn length to show labels
|
minimum pattern length to show labels
|
||||||
Ignored for custom labelers.
|
Ignored for custom labelers.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ mkVimPlugin {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cursor_hl_group_default = lib.nixvim.defaultNullOpts.mkStr "Cursor" ''
|
cursor_hl_group_default = lib.nixvim.defaultNullOpts.mkStr "Cursor" ''
|
||||||
Cursor highlight group for any other userr.
|
Cursor highlight group for any other user.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
name_hl_group_user1 = lib.nixvim.defaultNullOpts.mkStr "CursorLineNr" ''
|
name_hl_group_user1 = lib.nixvim.defaultNullOpts.mkStr "CursorLineNr" ''
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
api_token = mkNullOrStr ''
|
api_token = mkNullOrStr ''
|
||||||
Token for authentificating to the backend provider.
|
Token for authenticating to the backend provider.
|
||||||
|
|
||||||
When `api_token` is set, it will be passed as a header: `Authorization: Bearer <api_token>`.
|
When `api_token` is set, it will be passed as a header: `Authorization: Bearer <api_token>`.
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ in
|
||||||
message = ''
|
message = ''
|
||||||
You have enabled `autoEnableSources` that tells Nixvim to automatically
|
You have enabled `autoEnableSources` that tells Nixvim to automatically
|
||||||
enable the source plugins with respect to the list of sources provided in `settings.sources`.
|
enable the source plugins with respect to the list of sources provided in `settings.sources`.
|
||||||
However, the latter is proveded as a raw lua string which is not parseable by Nixvim.
|
However, the latter is provided as a raw lua string which is not parseable by Nixvim.
|
||||||
|
|
||||||
If you want to keep using raw lua for defining your sources:
|
If you want to keep using raw lua for defining your sources:
|
||||||
- Ensure you enable the relevant plugins manually in your configuration;
|
- Ensure you enable the relevant plugins manually in your configuration;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ in
|
||||||
|
|
||||||
formatting = {
|
formatting = {
|
||||||
Indent = defaultNullOpts.mkUnsignedInt 2 ''
|
Indent = defaultNullOpts.mkUnsignedInt 2 ''
|
||||||
The number of spaces for each level of indenation.
|
The number of spaces for each level of indentation.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
MaxBlankLines = defaultNullOpts.mkUnsignedInt 2 ''
|
MaxBlankLines = defaultNullOpts.mkUnsignedInt 2 ''
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue