neovim-flake/modules/plugins/utility/motion/precognition/precognition.nix

69 lines
1.6 KiB
Nix
Raw Normal View History

{lib, ...}: let
2024-11-04 01:25:24 +01:00
inherit (lib.options) mkEnableOption mkOption literalExpression;
inherit (lib.types) attrsOf listOf str bool int submodule;
in {
2024-11-04 01:25:24 +01:00
options.vim.utility.motion.precognition = rec {
enable = mkEnableOption "precognition.nvim plugin";
startVisible = mkOption {
type = bool;
description = "Whether to start 'precognition' automatically.";
2024-11-04 01:25:24 +01:00
default = true;
};
showBlankVirtLine = mkOption {
type = bool;
description = "Whether to show a blank virtual line when no movements are shown.";
2024-11-04 01:25:24 +01:00
default = true;
};
highlightColor = mkOption {
type = attrsOf str;
example = literalExpression ''
{ link = "Comment"; }
# or
{ foreground = "#0000FF"; background = "#000000"; };
2024-11-04 01:25:24 +01:00
'';
default = {link = "Comment";};
2024-11-04 01:25:24 +01:00
description = "The highlight for the virtual text.";
};
hints = {
type = attrsOf (submodule {
options = {
text = mkOption {
type = str;
description = "The easier-to-read depiction of the motion.";
};
prio = {
type = int;
2024-11-04 01:25:24 +01:00
description = "The priority of the hint.";
example = 10;
default = 1;
2024-11-04 01:25:24 +01:00
};
};
});
};
gutterHints = hints;
disabled_fts = mkOption {
type = listOf str;
default = ["startify"];
2024-11-04 01:25:24 +01:00
example = literalExpression ''[ "startify" ]'';
};
mappings = {
# enable = mkOption {
# };
#
# disable = mkOption {
# };
#
# toggle = mkOption {
# };
};
};
}