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"; };
|
||||
'';
|
||||
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 {
|
||||
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 {
|
||||
options = {
|
||||
text = mkOption {
|
||||
|
@ -49,7 +59,14 @@ in {
|
|||
};
|
||||
|
||||
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 {
|
||||
type = listOf str;
|
||||
|
|
Loading…
Reference in a new issue