utility/precognition: update descriptions

needs docs link, desc is somewhat obscure.
This commit is contained in:
Nowaaru 2024-11-04 00:42:12 -07:00
parent 1b2b9763f4
commit 7df01d1cf6
No known key found for this signature in database

View file

@ -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,7 +59,14 @@ 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;