mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-06-13 16:25:04 +00:00
166 lines
4.6 KiB
Nix
166 lines
4.6 KiB
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkMerge;
|
|
inherit (lib.options) mkOption literalMD showFiles;
|
|
inherit (lib.types) either str listOf attrsOf nullOr submodule;
|
|
inherit (lib.attrsets) mapAttrsToList;
|
|
inherit (lib.lists) flatten optional;
|
|
inherit (lib.trivial) pipe;
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.config) mkBool;
|
|
|
|
mapConfigOptions = {
|
|
desc = mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
description = ''
|
|
Description for the keybind, to be shown in which-key, if you have enabled
|
|
in the module system.
|
|
'';
|
|
};
|
|
|
|
action = mkOption {
|
|
type = str;
|
|
description = "The command to execute.";
|
|
};
|
|
|
|
lua = mkBool false ''
|
|
If true, `action` is considered to be lua code.
|
|
Thus, it will not be wrapped in `""`.
|
|
'';
|
|
|
|
silent = mkBool true "Whether this mapping should be silent. Equivalent to adding <silent> to a map.";
|
|
nowait = mkBool false "Whether to wait for extra input on ambiguous mappings. Equivalent to adding <nowait> to a map.";
|
|
script = mkBool false "Equivalent to adding <script> to a map.";
|
|
expr = mkBool false "Means that the action is actually an expression. Equivalent to adding <expr> to a map.";
|
|
unique = mkBool false "Whether to fail if the map is already defined. Equivalent to adding <unique> to a map.";
|
|
noremap = mkBool true "Whether to use the 'noremap' variant of the command, ignoring any custom mappings on the defined action. It is highly advised to keep this on, which is the default.";
|
|
};
|
|
|
|
mapType = submodule {
|
|
options =
|
|
mapConfigOptions
|
|
// {
|
|
key = mkOption {
|
|
type = nullOr str;
|
|
description = "The key that triggers this keybind.";
|
|
};
|
|
mode = mkOption {
|
|
type = either str (listOf str);
|
|
description = ''
|
|
The short-name of the mode to set the keymapping for. Passing an empty string is the equivalent of `:map`.
|
|
|
|
See `:help map-modes` for a list of modes.
|
|
'';
|
|
example = literalMD ''`["n" "v" "c"]` for normal, visual and command mode'';
|
|
};
|
|
};
|
|
};
|
|
|
|
legacyMapOption = mode:
|
|
mkOption {
|
|
description = "Mappings for ${mode} mode";
|
|
visible = false;
|
|
type = attrsOf (submodule {
|
|
options = mapConfigOptions;
|
|
});
|
|
};
|
|
|
|
legacyMapModes = {
|
|
normal = ["n"];
|
|
insert = ["i"];
|
|
select = ["s"];
|
|
visual = ["v"];
|
|
terminal = ["t"];
|
|
normalVisualOp = ["n" "v" "o"];
|
|
visualOnly = ["n" "x"];
|
|
operator = ["o"];
|
|
insertCommand = ["i" "c"];
|
|
lang = ["l"];
|
|
command = ["c"];
|
|
};
|
|
|
|
cfg = config.vim;
|
|
in {
|
|
options.vim = {
|
|
vendoredKeymaps.enable =
|
|
mkEnableOption "this project's vendored keymaps by default"
|
|
// {
|
|
default = true;
|
|
example = false;
|
|
};
|
|
|
|
keymaps = mkOption {
|
|
type = listOf mapType;
|
|
description = "Custom keybindings.";
|
|
example = ''
|
|
vim.keymaps = [
|
|
{
|
|
key = "<leader>m";
|
|
mode = "n";
|
|
silent = true;
|
|
action = ":make<CR>";
|
|
}
|
|
{
|
|
key = "<leader>l";
|
|
mode = ["n" "x"];
|
|
silent = true;
|
|
action = "<cmd>cnext<CR>";
|
|
}
|
|
];
|
|
'';
|
|
default = {};
|
|
};
|
|
|
|
maps = {
|
|
normal = legacyMapOption "normal";
|
|
insert = legacyMapOption "insert";
|
|
select = legacyMapOption "select";
|
|
visual = legacyMapOption "visual and select";
|
|
terminal = legacyMapOption "terminal";
|
|
normalVisualOp = legacyMapOption "normal, visual, select and operator-pending (same as plain 'map')";
|
|
|
|
visualOnly = legacyMapOption "visual only";
|
|
operator = legacyMapOption "operator-pending";
|
|
insertCommand = legacyMapOption "insert and command-line";
|
|
lang = legacyMapOption "insert, command-line and lang-arg";
|
|
command = legacyMapOption "command-line";
|
|
};
|
|
};
|
|
|
|
config = {
|
|
vim.keymaps = mkMerge [
|
|
(
|
|
pipe cfg.maps
|
|
[
|
|
(mapAttrsToList (
|
|
oldMode: keybinds:
|
|
mapAttrsToList (
|
|
key: bind:
|
|
bind
|
|
// {
|
|
inherit key;
|
|
mode = legacyMapModes.${oldMode};
|
|
}
|
|
)
|
|
keybinds
|
|
))
|
|
flatten
|
|
]
|
|
)
|
|
];
|
|
|
|
# 2026-06-12
|
|
warnings = mkMerge (mapAttrsToList (
|
|
name: option:
|
|
optional
|
|
option.isDefined
|
|
"The option `vim.maps.${name}` defined in ${showFiles option.files} is deprecated, please use `vim.keymaps` instead. "
|
|
)
|
|
options.vim.maps);
|
|
};
|
|
}
|