ソースを参照

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,