mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-27 02:44:58 +08:00
29 lines
593 B
Nix
29 lines
593 B
Nix
{
|
|
programs.nixvim.plugins = {
|
|
mini.enable = true;
|
|
mini.modules = {
|
|
align = { };
|
|
files = {
|
|
mappings = {
|
|
close = "<Esc>";
|
|
};
|
|
};
|
|
hipatterns = {
|
|
hex_color = "hipatterns.gen_highlighter.hex_color()";
|
|
};
|
|
indentscope = { };
|
|
move = {
|
|
mappings = {
|
|
left = "<C-h>";
|
|
right = "<C-l>";
|
|
up = "<C-k>";
|
|
down = "<C-j>";
|
|
line_left = "<C-h>";
|
|
line_right = "<C-l>";
|
|
line_up = "<C-k>";
|
|
line_down = "<C-j>";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|