mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 06:55:58 +01:00
utility/precognition: fix hints option
it broke
This commit is contained in:
parent
fab51c4354
commit
121d375040
1 changed files with 4 additions and 2 deletions
|
@ -29,14 +29,16 @@ in {
|
||||||
description = "The highlight for the virtual text.";
|
description = "The highlight for the virtual text.";
|
||||||
};
|
};
|
||||||
|
|
||||||
hints = {
|
hints = mkOption {
|
||||||
|
default = {};
|
||||||
|
description = "What motions display and at what priority.";
|
||||||
type = attrsOf (submodule {
|
type = attrsOf (submodule {
|
||||||
options = {
|
options = {
|
||||||
text = mkOption {
|
text = mkOption {
|
||||||
type = str;
|
type = str;
|
||||||
description = "The easier-to-read depiction of the motion.";
|
description = "The easier-to-read depiction of the motion.";
|
||||||
};
|
};
|
||||||
prio = {
|
prio = mkOption {
|
||||||
type = int;
|
type = int;
|
||||||
description = "The priority of the hint.";
|
description = "The priority of the hint.";
|
||||||
example = 10;
|
example = 10;
|
||||||
|
|
Loading…
Reference in a new issue