mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35:58 +01:00
utility/precognition: update descriptions
needs docs link, desc is somewhat obscure.
This commit is contained in:
parent
1b2b9763f4
commit
7df01d1cf6
1 changed files with 21 additions and 4 deletions
|
@ -26,12 +26,22 @@ in {
|
||||||
{ foreground = "#0000FF"; background = "#000000"; };
|
{ foreground = "#0000FF"; background = "#000000"; };
|
||||||
'';
|
'';
|
||||||
default = {link = "Comment";};
|
default = {link = "Comment";};
|
||||||
description = "The highlight for the virtual text.";
|
description = ''
|
||||||
|
The highlight for the virtual text.
|
||||||
|
|
||||||
|
To find more about this option, please see
|
||||||
|
[the documentation](https://github.com/tris203/precognition.nvim).
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
hints = mkOption {
|
hints = mkOption {
|
||||||
default = {};
|
default = {};
|
||||||
description = "What motions display and at what priority.";
|
description = ''
|
||||||
|
What motions display and at what priority.";
|
||||||
|
|
||||||
|
To find more about this option, please see
|
||||||
|
[the documentation](https://github.com/tris203/precognition.nvim).
|
||||||
|
'';
|
||||||
type = attrsOf (submodule {
|
type = attrsOf (submodule {
|
||||||
options = {
|
options = {
|
||||||
text = mkOption {
|
text = mkOption {
|
||||||
|
@ -49,12 +59,19 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
gutterHints = hints //
|
gutterHints = hints //
|
||||||
{ description = "What motions display and at what priority. Only appears in gutters."; };
|
{
|
||||||
|
description = ''
|
||||||
|
What motions display and at what priority. Only appears in gutters.
|
||||||
|
|
||||||
|
To find more about this option, please see
|
||||||
|
[the documentation](https://github.com/tris203/precognition.nvim).
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
disabled_fts = mkOption {
|
disabled_fts = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
default = ["startify"];
|
default = ["startify"];
|
||||||
example = literalExpression ''[ "startify" ]'';
|
example = literalExpression ''["startify"]'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue