mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-26 23:16:46 +00:00
Compare commits
38 commits
51035c5468
...
f905acaf05
Author | SHA1 | Date | |
---|---|---|---|
|
f905acaf05 | ||
|
c5c7d46e35 | ||
|
c0bfe6bb38 | ||
|
5136fc4bd1 | ||
|
2e2a34f9ac | ||
|
97aa39bc02 | ||
|
b7d9febe25 | ||
|
767407a7d4 | ||
|
eeb54209e2 | ||
|
aeabcb80e0 | ||
|
645574073a | ||
|
afec78de26 | ||
|
6497644e6d | ||
|
290cfebec5 | ||
|
346950ad7a | ||
|
ed88e796a6 | ||
|
acbc2ecfa0 | ||
|
d5bc0ce4f9 | ||
|
7350769edf | ||
|
74bc4f843d | ||
|
d5b6923f5a | ||
|
86bb6fffdf | ||
|
bf858feb11 | ||
|
5708487de7 | ||
|
140a2ed660 | ||
|
6feafdc292 | ||
|
2927800175 | ||
|
e6c15ed881 | ||
|
dc79db2e89 | ||
|
a0006ca486 | ||
|
de82d9b2c8 | ||
|
2d797ead5d | ||
|
0fac19afee | ||
|
ccc871047c | ||
|
d013475282 | ||
|
57afef8321 | ||
|
b89c311d95 | ||
|
7b00ab4fa3 |
3 changed files with 44 additions and 66 deletions
|
@ -4,74 +4,55 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.modules) mkIf mkMerge;
|
inherit (lib.modules) mkIf mkMerge;
|
||||||
inherit (lib.trivial) pipe;
|
inherit (builtins) mapAttrs;
|
||||||
inherit (lib.attrsets) mapAttrsToList;
|
|
||||||
inherit (lib.lists) flatten;
|
|
||||||
|
|
||||||
legacyMapModes = {
|
processLegacyMap = modes: legacyMap: [(legacyMap // {mode = modes;})];
|
||||||
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;
|
cfg = config.vim;
|
||||||
in {
|
in {
|
||||||
config = {
|
config = {
|
||||||
vim.keymaps = mkMerge [
|
vim.keymaps = mkMerge [
|
||||||
(
|
(mkIf cfg.disableArrows {
|
||||||
mkIf cfg.disableArrows [
|
"<up>" = [
|
||||||
{
|
{
|
||||||
key = "<up>";
|
|
||||||
mode = ["n" "i"];
|
mode = ["n" "i"];
|
||||||
action = "<nop>";
|
action = "<nop>";
|
||||||
noremap = false;
|
noremap = false;
|
||||||
}
|
}
|
||||||
|
];
|
||||||
|
"<down>" = [
|
||||||
{
|
{
|
||||||
key = "<down>";
|
|
||||||
mode = ["n" "i"];
|
mode = ["n" "i"];
|
||||||
action = "<nop>";
|
action = "<nop>";
|
||||||
noremap = false;
|
noremap = false;
|
||||||
}
|
}
|
||||||
|
];
|
||||||
|
"<left>" = [
|
||||||
{
|
{
|
||||||
key = "<left>";
|
|
||||||
mode = ["n" "i"];
|
mode = ["n" "i"];
|
||||||
action = "<nop>";
|
action = "<nop>";
|
||||||
noremap = false;
|
noremap = false;
|
||||||
}
|
}
|
||||||
|
];
|
||||||
|
"<right>" = [
|
||||||
{
|
{
|
||||||
key = "<right>";
|
|
||||||
mode = ["n" "i"];
|
mode = ["n" "i"];
|
||||||
action = "<nop>";
|
action = "<nop>";
|
||||||
noremap = false;
|
noremap = false;
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
)
|
})
|
||||||
(
|
(mapAttrs (_key: processLegacyMap ["n"]) cfg.maps.normal)
|
||||||
pipe cfg.maps
|
(mapAttrs (_key: processLegacyMap ["i"]) cfg.maps.insert)
|
||||||
[
|
(mapAttrs (_key: processLegacyMap ["s"]) cfg.maps.select)
|
||||||
(mapAttrsToList (
|
(mapAttrs (_key: processLegacyMap ["v"]) cfg.maps.visual)
|
||||||
oldMode: keybinds:
|
(mapAttrs (_key: processLegacyMap ["t"]) cfg.maps.terminal)
|
||||||
mapAttrsToList (
|
(mapAttrs (_key: processLegacyMap ["n" "v" "o"]) cfg.maps.normalVisualOp)
|
||||||
key: bind:
|
(mapAttrs (_key: processLegacyMap ["n" "x"]) cfg.maps.visualOnly)
|
||||||
bind
|
(mapAttrs (_key: processLegacyMap ["o"]) cfg.maps.operator)
|
||||||
// {
|
(mapAttrs (_key: processLegacyMap ["i" "c"]) cfg.maps.insertCommand)
|
||||||
inherit key;
|
(mapAttrs (_key: processLegacyMap ["l"]) cfg.maps.lang)
|
||||||
mode = legacyMapModes.${oldMode};
|
(mapAttrs (_key: processLegacyMap ["c"]) cfg.maps.command)
|
||||||
}
|
|
||||||
)
|
|
||||||
keybinds
|
|
||||||
))
|
|
||||||
flatten
|
|
||||||
]
|
|
||||||
)
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,12 +31,6 @@
|
||||||
options =
|
options =
|
||||||
mapConfigOptions
|
mapConfigOptions
|
||||||
// {
|
// {
|
||||||
key = mkOption {
|
|
||||||
type = str;
|
|
||||||
description = ''
|
|
||||||
Key that triggers this keybind.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
mode = mkOption {
|
mode = mkOption {
|
||||||
type = either str (listOf str);
|
type = either str (listOf str);
|
||||||
description = ''
|
description = ''
|
||||||
|
@ -50,36 +44,31 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# legacy stuff
|
# legacy stuff
|
||||||
legacyMapOption = submodule {
|
mapOption = submodule {
|
||||||
options = mapConfigOptions;
|
options = mapConfigOptions;
|
||||||
};
|
};
|
||||||
|
|
||||||
mapOptions = mode:
|
mapOptions = mode:
|
||||||
mkOption {
|
mkOption {
|
||||||
description = "Mappings for ${mode} mode";
|
description = "Mappings for ${mode} mode";
|
||||||
type = attrsOf legacyMapOption;
|
type = attrsOf mapOption;
|
||||||
default = {};
|
default = {};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
options.vim = {
|
options.vim = {
|
||||||
keymaps = mkOption {
|
keymaps = mkOption {
|
||||||
type = listOf mapType;
|
type = submodule {
|
||||||
|
freeformType = attrsOf (listOf mapType);
|
||||||
|
};
|
||||||
description = "Custom keybindings.";
|
description = "Custom keybindings.";
|
||||||
example = ''
|
example = ''
|
||||||
vim.keymaps = [
|
maps = {
|
||||||
{
|
"<leader>m" = {
|
||||||
key = "<leader>m";
|
|
||||||
mode = "n";
|
mode = "n";
|
||||||
silent = true;
|
silent = true;
|
||||||
action = ":make<CR>";
|
action = "<cmd>make<CR>";
|
||||||
}
|
}; # Same as nnoremap <leader>m <silent> <cmd>make<CR>
|
||||||
{
|
};
|
||||||
key = "<leader>l";
|
|
||||||
mode = ["n" "x"];
|
|
||||||
silent = true;
|
|
||||||
action = "<cmd>cnext<CR>";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
'';
|
'';
|
||||||
default = {};
|
default = {};
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
inherit (builtins) map mapAttrs filter;
|
inherit (builtins) map mapAttrs filter;
|
||||||
inherit (lib.attrsets) mapAttrsToList filterAttrs;
|
inherit (lib.attrsets) mapAttrsToList filterAttrs;
|
||||||
inherit (lib.strings) concatLines concatMapStringsSep optionalString;
|
inherit (lib.strings) concatLines concatMapStringsSep optionalString;
|
||||||
inherit (lib.trivial) showWarnings;
|
inherit (lib.trivial) showWarnings pipe;
|
||||||
inherit (lib.generators) mkLuaInline;
|
inherit (lib.generators) mkLuaInline;
|
||||||
inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag entryAnywhere;
|
inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag entryAnywhere;
|
||||||
inherit (lib.nvim.lua) toLuaObject;
|
inherit (lib.nvim.lua) toLuaObject;
|
||||||
|
@ -40,9 +40,17 @@ in {
|
||||||
inherit (keymap) desc silent nowait script expr unique noremap;
|
inherit (keymap) desc silent nowait script expr unique noremap;
|
||||||
};
|
};
|
||||||
|
|
||||||
toLuaKeymap = bind: "vim.keymap.set(${toLuaObject bind.mode}, ${toLuaObject bind.key}, ${toLuaObject (getAction bind)}, ${toLuaObject (getOpts bind)})";
|
toLuaKeymap = key: bind: "vim.keymap.set(${toLuaObject bind.mode}, ${toLuaObject key}, ${toLuaObject (getAction bind)}, ${toLuaObject (getOpts bind)})";
|
||||||
|
|
||||||
maps = concatLines (map toLuaKeymap cfg.keymaps);
|
maps =
|
||||||
|
pipe
|
||||||
|
# attrsOf (listOf mapOption)
|
||||||
|
cfg.keymaps
|
||||||
|
[
|
||||||
|
(mapAttrsToList (key: binds:
|
||||||
|
concatLines (map (toLuaKeymap key) binds)))
|
||||||
|
concatLines
|
||||||
|
];
|
||||||
|
|
||||||
keymaps = maps;
|
keymaps = maps;
|
||||||
in {
|
in {
|
||||||
|
|
Loading…
Reference in a new issue