mirror of
https://github.com/akr2002/nv.git
synced 2024-11-10 02:59:45 +00:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
plugins.treesitter-textobjects = {
|
|
enable = false;
|
|
select = {
|
|
enable = true;
|
|
lookahead = true;
|
|
keymaps = {
|
|
"aa" = "@parameter.outer";
|
|
"ia" = "@parameter.inner";
|
|
"af" = "@function.outer";
|
|
"if" = "@function.inner";
|
|
"ac" = "@class.outer";
|
|
"ic" = "@class.inner";
|
|
"ii" = "@conditional.inner";
|
|
"ai" = "@conditional.outer";
|
|
"il" = "@loop.inner";
|
|
"al" = "@loop.outer";
|
|
"at" = "@comment.outer";
|
|
};
|
|
};
|
|
move = {
|
|
enable = true;
|
|
gotoNextStart = {
|
|
"]m" = "@function.outer";
|
|
"]]" = "@class.outer";
|
|
};
|
|
gotoNextEnd = {
|
|
"]M" = "@function.outer";
|
|
"][" = "@class.outer";
|
|
};
|
|
gotoPreviousStart = {
|
|
"[m" = "@function.outer";
|
|
"[[" = "@class.outer";
|
|
};
|
|
gotoPreviousEnd = {
|
|
"[M" = "@function.outer";
|
|
"[]" = "@class.outer";
|
|
};
|
|
};
|
|
swap = {
|
|
enable = true;
|
|
swapNext = {
|
|
"<leader>a" = "@parameters.inner";
|
|
};
|
|
swapPrevious = {
|
|
"<leader>A" = "@parameter.outer";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|