1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-move/default.nix
2025-11-02 12:35:54 +00:00

28 lines
488 B
Nix

{
empty = {
plugins.mini-move.enable = true;
};
defaults = {
plugins.mini-move = {
enable = true;
settings = {
mappings = {
left = "<M-h>";
right = "<M-l>";
down = "<M-j>";
up = "<M-k>";
line_left = "<M-h>";
line_right = "<M-l>";
line_down = "<M-j>";
line_up = "<M-k>";
};
options = {
reindent_linewise = true;
};
};
};
};
}