فهرست منبع

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,