Update nixvim keymaps and harpoon plugin
- Add indentation and line movement keymaps in visual mode - Add keymap for adding files in harpoon plugin
This commit is contained in:
parent
86c59bb27b
commit
d058b2cf72
|
@ -5,9 +5,7 @@
|
||||||
mode = ["n"];
|
mode = ["n"];
|
||||||
action = "<C-w>h";
|
action = "<C-w>h";
|
||||||
key = "<S-h>";
|
key = "<S-h>";
|
||||||
options = {
|
options = {silent = true;};
|
||||||
silent = true;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
mode = ["n"];
|
mode = ["n"];
|
||||||
|
@ -113,5 +111,33 @@
|
||||||
action = ": resize +1<CR>";
|
action = ": resize +1<CR>";
|
||||||
options = {noremap = true;};
|
options = {noremap = true;};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# indent line in or out
|
||||||
|
{
|
||||||
|
mode = ["v"];
|
||||||
|
key = "<";
|
||||||
|
action = "<gv";
|
||||||
|
options = {noremap = true;};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = ["v"];
|
||||||
|
key = ">";
|
||||||
|
action = ">gv";
|
||||||
|
options = {noremap = true;};
|
||||||
|
}
|
||||||
|
|
||||||
|
# move selected line up or down
|
||||||
|
{
|
||||||
|
mode = ["v"];
|
||||||
|
key = "J";
|
||||||
|
action = ":m '>+1<CR>gv=gv";
|
||||||
|
options = {noremap = true;};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = ["v"];
|
||||||
|
key = "K";
|
||||||
|
action = ":m '<-2<CR>gv=gv";
|
||||||
|
options = {noremap = true;};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
keymaps = {
|
keymaps = {
|
||||||
toggleQuickMenu = "<leader>h";
|
toggleQuickMenu = "<leader>h";
|
||||||
|
addFile = "<leader>a";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue