Compare commits

..

38 commits

Author SHA1 Message Date
Ching Pei Yang
f905acaf05
Merge c5c7d46e35 into e40cce5653 2024-08-18 13:07:58 +00:00
Ching Pei Yang
c5c7d46e35 flake: update lzn-auto-require 2024-08-18 15:07:52 +02:00
Ching Pei Yang
c0bfe6bb38 lz.n: add missing PluginSpec options 2024-08-18 15:07:52 +02:00
Ching Pei Yang
5136fc4bd1 add TODO 2024-08-18 15:07:52 +02:00
Ching Pei Yang
2e2a34f9ac lib: allow luaInline in lz.n map action 2024-08-18 15:07:52 +02:00
Ching Pei Yang
97aa39bc02 flake: update lzn-auto-require 2024-08-18 15:07:52 +02:00
Ching Pei Yang
b7d9febe25 fixup! wrapper: use lzn-auto-require loader 2024-08-18 15:07:52 +02:00
Ching Pei Yang
767407a7d4 lib: add mkSetLuaBinding 2024-08-18 15:07:52 +02:00
Ching Pei Yang
eeb54209e2 wrapper: use lzn-auto-require loader 2024-08-18 15:07:52 +02:00
Ching Pei Yang
aeabcb80e0 flake: add plugin lzn-auto-require 2024-08-18 15:07:52 +02:00
Ching Pei Yang
645574073a lz.n: generate less code 2024-08-18 15:07:52 +02:00
Ching Pei Yang
afec78de26 lz.n: wrap lua code in function 2024-08-18 15:07:52 +02:00
Ching Pei Yang
6497644e6d lib: add mkLznBinding 2024-08-18 15:07:52 +02:00
Ching Pei Yang
290cfebec5 nvim-tree: load nvim-tree if openOnSetup 2024-08-18 15:07:52 +02:00
Ching Pei Yang
346950ad7a nvim-tree: move to lz.n keymaps 2024-08-18 15:07:52 +02:00
Ching Pei Yang
ed88e796a6 lib: add mkLznBinding 2024-08-18 15:07:52 +02:00
Ching Pei Yang
acbc2ecfa0 lib: change lz.n spec "inlineLua" types to str 2024-08-18 15:07:52 +02:00
Ching Pei Yang
d5bc0ce4f9 lz.n: missing type check 2024-08-18 15:07:52 +02:00
Ching Pei Yang
7350769edf lib: add lznKeySpec example 2024-08-18 15:07:52 +02:00
Ching Pei Yang
74bc4f843d lz.n: process key maps 2024-08-18 15:07:52 +02:00
Ching Pei Yang
d5b6923f5a remove unused 2024-08-18 15:07:52 +02:00
Pei Yang Ching
86bb6fffdf lib: fix lz.n map type 2024-08-18 15:07:52 +02:00
Ching Pei Yang
bf858feb11 lib: add lz.n KeySpec 2024-08-18 15:07:52 +02:00
Pei Yang Ching
5708487de7 nvim-tree: use lazy 2024-08-18 15:07:52 +02:00
Pei Yang Ching
140a2ed660 lazy: add setupOpts support 2024-08-18 15:07:52 +02:00
Pei Yang Ching
6feafdc292 fix: broken optPlugins 2024-08-18 15:07:52 +02:00
Pei Yang Ching
2927800175 switch to other hacky array-table syntax 2024-08-18 15:07:52 +02:00
Pei Yang Ching
e6c15ed881 wrap lazy init code in function 2024-08-18 15:07:52 +02:00
Ching Pei Yang
dc79db2e89 flake: update lz.n 2024-08-18 15:07:52 +02:00
Ching Pei Yang
a0006ca486 lib: add lznPluginTableType 2024-08-18 15:07:52 +02:00
Ching Pei Yang
de82d9b2c8 lib: export lznPluginType 2024-08-18 15:07:52 +02:00
Ching Pei Yang
2d797ead5d lz.n: load lz.n 2024-08-18 15:07:52 +02:00
Ching Pei Yang
0fac19afee lz.n: add basic lazy.plugins option 2024-08-18 15:07:52 +02:00
Pei Yang Ching
ccc871047c lib: add basic lz.n plugin spec type 2024-08-18 15:07:52 +02:00
Pei Yang Ching
d013475282 add lazy module skeleton 2024-08-18 15:07:52 +02:00
Pei Yang Ching
57afef8321 flake: add lz.n plugin 2024-08-18 15:07:52 +02:00
Pei Yang Ching
b89c311d95 maps: fix missing description 2024-08-18 15:07:52 +02:00
Ching Pei Yang
7b00ab4fa3 remove unused 2024-08-18 15:07:52 +02:00
3 changed files with 44 additions and 66 deletions

View file

@ -4,74 +4,55 @@
...
}: let
inherit (lib.modules) mkIf mkMerge;
inherit (lib.trivial) pipe;
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.lists) flatten;
inherit (builtins) mapAttrs;
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"];
};
processLegacyMap = modes: legacyMap: [(legacyMap // {mode = modes;})];
cfg = config.vim;
in {
config = {
vim.keymaps = mkMerge [
(
mkIf cfg.disableArrows [
(mkIf cfg.disableArrows {
"<up>" = [
{
key = "<up>";
mode = ["n" "i"];
action = "<nop>";
noremap = false;
}
];
"<down>" = [
{
key = "<down>";
mode = ["n" "i"];
action = "<nop>";
noremap = false;
}
];
"<left>" = [
{
key = "<left>";
mode = ["n" "i"];
action = "<nop>";
noremap = false;
}
];
"<right>" = [
{
key = "<right>";
mode = ["n" "i"];
action = "<nop>";
noremap = false;
}
]
)
(
pipe cfg.maps
[
(mapAttrsToList (
oldMode: keybinds:
mapAttrsToList (
key: bind:
bind
// {
inherit key;
mode = legacyMapModes.${oldMode};
}
)
keybinds
))
flatten
]
)
];
})
(mapAttrs (_key: processLegacyMap ["n"]) cfg.maps.normal)
(mapAttrs (_key: processLegacyMap ["i"]) cfg.maps.insert)
(mapAttrs (_key: processLegacyMap ["s"]) cfg.maps.select)
(mapAttrs (_key: processLegacyMap ["v"]) cfg.maps.visual)
(mapAttrs (_key: processLegacyMap ["t"]) cfg.maps.terminal)
(mapAttrs (_key: processLegacyMap ["n" "v" "o"]) cfg.maps.normalVisualOp)
(mapAttrs (_key: processLegacyMap ["n" "x"]) cfg.maps.visualOnly)
(mapAttrs (_key: processLegacyMap ["o"]) cfg.maps.operator)
(mapAttrs (_key: processLegacyMap ["i" "c"]) cfg.maps.insertCommand)
(mapAttrs (_key: processLegacyMap ["l"]) cfg.maps.lang)
(mapAttrs (_key: processLegacyMap ["c"]) cfg.maps.command)
];
};
}

View file

@ -31,12 +31,6 @@
options =
mapConfigOptions
// {
key = mkOption {
type = str;
description = ''
Key that triggers this keybind.
'';
};
mode = mkOption {
type = either str (listOf str);
description = ''
@ -50,36 +44,31 @@
};
# legacy stuff
legacyMapOption = submodule {
mapOption = submodule {
options = mapConfigOptions;
};
mapOptions = mode:
mkOption {
description = "Mappings for ${mode} mode";
type = attrsOf legacyMapOption;
type = attrsOf mapOption;
default = {};
};
in {
options.vim = {
keymaps = mkOption {
type = listOf mapType;
type = submodule {
freeformType = attrsOf (listOf mapType);
};
description = "Custom keybindings.";
example = ''
vim.keymaps = [
{
key = "<leader>m";
maps = {
"<leader>m" = {
mode = "n";
silent = true;
action = ":make<CR>";
}
{
key = "<leader>l";
mode = ["n" "x"];
silent = true;
action = "<cmd>cnext<CR>";
}
];
action = "<cmd>make<CR>";
}; # Same as nnoremap <leader>m <silent> <cmd>make<CR>
};
'';
default = {};
};

View file

@ -6,7 +6,7 @@
inherit (builtins) map mapAttrs filter;
inherit (lib.attrsets) mapAttrsToList filterAttrs;
inherit (lib.strings) concatLines concatMapStringsSep optionalString;
inherit (lib.trivial) showWarnings;
inherit (lib.trivial) showWarnings pipe;
inherit (lib.generators) mkLuaInline;
inherit (lib.nvim.dag) entryAfter mkLuarcSection resolveDag entryAnywhere;
inherit (lib.nvim.lua) toLuaObject;
@ -40,9 +40,17 @@ in {
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;
in {