nix-community.nixvim/plugins/utils/which-key.nix

239 lines
8.1 KiB
Nix
Raw Normal View History

2023-04-16 13:08:07 +02:00
{
lib,
helpers,
2023-04-16 13:08:07 +02:00
pkgs,
config,
...
}:
2024-05-05 19:39:35 +02:00
with lib;
{
2023-04-16 13:08:07 +02:00
options.plugins.which-key = {
2024-05-05 19:39:35 +02:00
enable = mkEnableOption "which-key.nvim, a plugin that popup with possible key bindings of the command you started typing";
2023-04-16 13:08:07 +02:00
package = helpers.mkPluginPackageOption "which-key-nvim" pkgs.vimPlugins.which-key-nvim;
2023-04-16 13:08:07 +02:00
registrations = mkOption {
type = with types; attrsOf anything;
2024-05-05 19:39:35 +02:00
default = { };
description = "Manually register the description of mappings.";
example = {
"<leader>p" = "Find git files with telescope";
};
};
2023-04-16 13:08:07 +02:00
plugins = {
marks = helpers.defaultNullOpts.mkBool true "shows a list of your marks on ' and `";
2024-05-05 19:39:35 +02:00
registers = helpers.defaultNullOpts.mkBool true ''shows your registers on " in NORMAL or <C-r> in INSERT mode'';
2023-04-16 13:08:07 +02:00
spelling = {
2024-05-05 19:39:35 +02:00
enabled = helpers.defaultNullOpts.mkBool true "enabling this will show WhichKey when pressing z= to select spelling suggestions";
suggestions = helpers.defaultNullOpts.mkInt 20 "how many suggestions should be shown in the list?";
2023-04-16 13:08:07 +02:00
};
presets = {
operators = helpers.defaultNullOpts.mkBool true "adds help for operators like d, y, ...";
motions = helpers.defaultNullOpts.mkBool true "adds help for motions";
2024-05-05 19:39:35 +02:00
textObjects = helpers.defaultNullOpts.mkBool true "help for text objects triggered after entering an operator";
2023-04-16 13:08:07 +02:00
windows = helpers.defaultNullOpts.mkBool true "default bindings on <c-w>";
nav = helpers.defaultNullOpts.mkBool true "misc bindings to work with windows";
2024-05-05 19:39:35 +02:00
z = helpers.defaultNullOpts.mkBool true "bindings for folds, spelling and others prefixed with z";
2023-04-16 13:08:07 +02:00
g = helpers.defaultNullOpts.mkBool true "bindings for prefixed with g";
};
};
operators = helpers.defaultNullOpts.mkNullable (types.attrsOf types.str) ''{gc = "Comments";}'' ''
add operators that will trigger motion and text object completion
to enable all native operators, set the preset / operators plugin above
'';
keyLabels = helpers.defaultNullOpts.mkNullable (types.attrsOf types.str) ''{}'' ''
override the label used to display some keys. It doesn't effect WK in any other way.
'';
motions = {
count = helpers.defaultNullOpts.mkBool true "";
};
icons = {
2024-05-05 19:39:35 +02:00
breadcrumb = helpers.defaultNullOpts.mkStr "»" "symbol used in the command line area that shows your active key combo";
2023-04-16 13:08:07 +02:00
separator = helpers.defaultNullOpts.mkStr "" "symbol used between a key and it's label";
group = helpers.defaultNullOpts.mkStr "+" "symbol prepended to a group";
};
popupMappings = {
scrollDown = helpers.defaultNullOpts.mkStr "<c-d>" "binding to scroll down inside the popup";
scrollUp = helpers.defaultNullOpts.mkStr "<c-u>" "binding to scroll up inside the popup";
};
2024-05-05 19:39:35 +02:00
window =
let
spacingOptions = types.submodule {
options =
genAttrs
[
"top"
"right"
"bottom"
"left"
]
(
n:
mkOption {
type = types.ints.unsigned;
description = "Spacing at the ${n}.";
}
);
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
in
{
border = helpers.defaultNullOpts.mkBorder "none" "which-key" "";
position = helpers.defaultNullOpts.mkEnumFirstDefault [
"bottom"
"top"
] "";
margin =
helpers.defaultNullOpts.mkNullable spacingOptions ''{top = 1; right = 0; bottom = 1; left = 0;}''
"extra window margin";
padding =
helpers.defaultNullOpts.mkNullable spacingOptions ''{top = 1; right = 2; bottom = 1; left = 2;}''
"extra window padding";
winblend = helpers.defaultNullOpts.mkNullable (types.ints.between 0
100
) "0" "0 for fully opaque and 100 for fully transparent";
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
layout =
let
rangeOption = types.submodule {
options = {
min = mkOption {
type = types.int;
description = "Minimum size.";
};
max = mkOption {
type = types.int;
description = "Maximum size.";
};
2024-05-05 19:39:35 +02:00
};
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
in
{
height = helpers.defaultNullOpts.mkNullable rangeOption {
min = 4;
max = 25;
} "min and max height of the columns";
width = helpers.defaultNullOpts.mkNullable rangeOption {
min = 20;
max = 50;
} "min and max width of the columns";
2024-05-05 19:39:35 +02:00
spacing = helpers.defaultNullOpts.mkInt 3 "spacing between columns";
align = helpers.defaultNullOpts.mkEnumFirstDefault [
"left"
"center"
"right"
] "";
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
ignoreMissing = helpers.defaultNullOpts.mkBool false "enable this to hide mappings for which you didn't specify a label";
2023-04-16 13:08:07 +02:00
hidden = helpers.defaultNullOpts.mkNullable (types.listOf types.str) ''
["<silent>" "<cmd>" "<Cmd>" "<CR>" "^:" "^ " "^call " "^lua "]
'' "hide mapping boilerplate";
2024-05-05 19:39:35 +02:00
showHelp = helpers.defaultNullOpts.mkBool true "show a help message in the command line for using WhichKey";
2023-04-16 13:08:07 +02:00
2024-05-05 19:39:35 +02:00
showKeys = helpers.defaultNullOpts.mkBool true "show the currently pressed key and its label as a message in the command line";
2023-04-16 13:08:07 +02:00
2024-05-05 19:39:35 +02:00
triggers = helpers.defaultNullOpts.mkNullable (types.either (types.enum [ "auto" ]) (
types.listOf types.str
)) ''"auto"'' "automatically setup triggers, or specify a list manually";
2023-04-16 13:08:07 +02:00
triggersNoWait =
helpers.defaultNullOpts.mkNullable (types.listOf types.str)
2024-05-05 19:39:35 +02:00
''["`" "'" "g`" "g'" "\"" "<c-r>" "z="]''
''
list of triggers, where WhichKey should not wait for timeoutlen and show immediately
'';
2023-04-16 13:08:07 +02:00
triggersBlackList =
helpers.defaultNullOpts.mkNullable (types.attrsOf (types.listOf types.str))
2024-05-05 19:39:35 +02:00
''{ i = ["j" "k"]; v = ["j" "k"]}}''
''
list of mode / prefixes that should never be hooked by WhichKey
this is mostly relevant for keymaps that start with a native binding
'';
2023-04-16 13:08:07 +02:00
disable = {
buftypes =
helpers.defaultNullOpts.mkNullable (types.listOf types.str) "[]"
2024-05-05 19:39:35 +02:00
"Disabled by default for Telescope";
2023-04-16 13:08:07 +02:00
filetypes = helpers.defaultNullOpts.mkNullable (types.listOf types.str) "[]" "";
};
};
2024-05-05 19:39:35 +02:00
config =
let
cfg = config.plugins.which-key;
setupOptions = {
plugins = {
inherit (cfg.plugins) marks registers spelling;
presets = {
inherit (cfg.plugins.presets) operators motions;
text_objects = cfg.plugins.presets.textObjects;
inherit (cfg.plugins.presets)
windows
nav
z
g
;
};
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
inherit (cfg) operators;
key_labels = cfg.keyLabels;
inherit (cfg) motions icons;
popup_mappings = {
scroll_down = cfg.popupMappings.scrollDown;
scroll_up = cfg.popupMappings.scrollUp;
};
window =
let
mkSpacing =
opt:
helpers.ifNonNull' opt [
opt.top
opt.right
opt.bottom
opt.top
];
in
{
inherit (cfg.window) border position;
margin = mkSpacing cfg.window.margin;
padding = mkSpacing cfg.window.padding;
inherit (cfg.window) winblend;
};
inherit (cfg) layout;
ignore_missing = cfg.ignoreMissing;
inherit (cfg) hidden;
show_help = cfg.showHelp;
show_keys = cfg.showKeys;
inherit (cfg) triggers;
triggers_nowait = cfg.triggersNoWait;
triggers_blacklist = cfg.triggersBlackList;
inherit (cfg) disable;
2023-04-16 13:08:07 +02:00
};
2024-05-05 19:39:35 +02:00
in
2023-04-16 13:08:07 +02:00
mkIf cfg.enable {
2024-05-05 19:39:35 +02:00
extraPlugins = [ cfg.package ];
2023-04-16 13:08:07 +02:00
extraConfigLua =
''
require("which-key").setup(${helpers.toLuaObject setupOptions})
''
2024-05-05 19:39:35 +02:00
+ (optionalString (cfg.registrations != { }) ''
require("which-key").register(${helpers.toLuaObject cfg.registrations})
'');
2023-04-16 13:08:07 +02:00
};
}