mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35: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.";
|
||||
};
|
||||
|
||||
hints = {
|
||||
hints = mkOption {
|
||||
default = {};
|
||||
description = "What motions display and at what priority.";
|
||||
type = attrsOf (submodule {
|
||||
options = {
|
||||
text = mkOption {
|
||||
type = str;
|
||||
description = "The easier-to-read depiction of the motion.";
|
||||
};
|
||||
prio = {
|
||||
prio = mkOption {
|
||||
type = int;
|
||||
description = "The priority of the hint.";
|
||||
example = 10;
|
||||
|
|
Loading…
Reference in a new issue