feat(nvim): add incremental selection in ts
This commit is contained in:
parent
fb41614b4f
commit
89fe11a95f
1 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,12 @@ in
|
||||||
nixvimInjections = true;
|
nixvimInjections = true;
|
||||||
settings.indent.enable = true;
|
settings.indent.enable = true;
|
||||||
settings.highlight.enable = true;
|
settings.highlight.enable = true;
|
||||||
|
settings.incremental_selection = {
|
||||||
|
enable = true;
|
||||||
|
keymaps.init_selection = "gn";
|
||||||
|
keymaps.node_decremental = "gp";
|
||||||
|
keymaps.node_incremental = "gn";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
performance.combinePlugins.standalonePlugins = [
|
performance.combinePlugins.standalonePlugins = [
|
||||||
"nvim-treesitter"
|
"nvim-treesitter"
|
||||||
|
|
Loading…
Reference in a new issue