my_nixvim_sharings/config/plugins/treesitter.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";
};
};
};
};
}