mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
28 lines
488 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|