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 }: 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
]
)
]; ];
}; };
} }

View file

@ -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 = {};
}; };

View file

@ -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 {