16 lines
288 B
Nix
16 lines
288 B
Nix
{
|
|
plugins = {
|
|
treesitter = {
|
|
enable = true;
|
|
incrementalSelection = {
|
|
enable = true;
|
|
keymaps = {
|
|
initSelection = "g<space><space>";
|
|
nodeIncremental = "g<space><space>";
|
|
scopeIncremental = "<c-s>";
|
|
nodeDecremental = "g<space>m";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|