浏览代码

nixpkgs/neovim: enable incremental selection

Thomas Dy 1 年之前
父节点
当前提交
c1a83b55b7
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      .config/nixpkgs/neovim/plugins.lua

+ 8 - 0
.config/nixpkgs/neovim/plugins.lua

@@ -150,6 +150,14 @@ require('nvim-treesitter.configs').setup({
   highlight = {
     enable = true,
   },
+  incremental_selection = {
+    enable = true,
+    keymaps = {
+      init_selection = "]t",
+      node_incremental = "]t",
+      node_decremental = "[t",
+    },
+  },
   textobjects = {
     swap = {
       enable = true,