aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--dot_config/nvim/lua/plugins/treesitter.lua74
1 files changed, 66 insertions, 8 deletions
diff --git a/dot_config/nvim/lua/plugins/treesitter.lua b/dot_config/nvim/lua/plugins/treesitter.lua
index a4a488c..69902c6 100644
--- a/dot_config/nvim/lua/plugins/treesitter.lua
+++ b/dot_config/nvim/lua/plugins/treesitter.lua
@@ -1,13 +1,71 @@
require("treewalker").setup({})
-vim.keymap.set({ "n", "v" }, "<a-k>", "<cmd>Treewalker Up<cr>", { silent = true, desc = "Moves up to the previous neighbor node" })
-vim.keymap.set({ "n", "v" }, "<a-j>", "<cmd>Treewalker Down<cr>", { silent = true, desc = "Moves up to the next neighbor node" })
-vim.keymap.set({ "n", "v" }, "<a-h>", "<cmd>Treewalker Left<cr>", { silent = true, desc = "Moves to the first ancestor node that's on a different line from the current node" })
-vim.keymap.set({ "n", "v" }, "<a-l>", "<cmd>Treewalker Right<cr>", { silent = true, desc = "Moves to the next node down that's indented further than the current node" })
-vim.keymap.set("n", "<s-a-k>", "<cmd>Treewalker SwapUp<cr>", { silent = true, desc = "Swaps the highest node on the line upwards in the document" })
-vim.keymap.set("n", "<s-a-j>", "<cmd>Treewalker SwapDown<cr>", { silent = true, desc = "Swaps the biggest node on the line downward in the document" })
-vim.keymap.set("n", "<s-a-h>", "<cmd>Treewalker SwapLeft<cr>", { silent = true, desc = "Swap the node under the cursor with its previous neighbor" })
-vim.keymap.set("n", "<s-a-l>", "<cmd>Treewalker SwapRight<cr>", { silent = true, desc = "Swap the node under the cursor with its next neighbor" })
+vim.keymap.set(
+ { "n", "v" },
+ "<a-k>",
+ "<cmd>Treewalker Up<cr>",
+ { silent = true, desc = "Moves up to the previous neighbor node" }
+)
+vim.keymap.set(
+ { "n", "v" },
+ "<a-j>",
+ "<cmd>Treewalker Down<cr>",
+ { silent = true, desc = "Moves up to the next neighbor node" }
+)
+vim.keymap.set(
+ { "n", "v" },
+ "<a-h>",
+ "<cmd>Treewalker Left<cr>",
+ {
+ silent = true,
+ desc = "Moves to the first ancestor node that's on a different line from the current node",
+ }
+)
+vim.keymap.set(
+ { "n", "v" },
+ "<a-l>",
+ "<cmd>Treewalker Right<cr>",
+ {
+ silent = true,
+ desc = "Moves to the next node down that's indented further than the current node",
+ }
+)
+vim.keymap.set(
+ "n",
+ "<s-a-k>",
+ "<cmd>Treewalker SwapUp<cr>",
+ {
+ silent = true,
+ desc = "Swaps the highest node on the line upwards in the document",
+ }
+)
+vim.keymap.set(
+ "n",
+ "<s-a-j>",
+ "<cmd>Treewalker SwapDown<cr>",
+ {
+ silent = true,
+ desc = "Swaps the biggest node on the line downward in the document",
+ }
+)
+vim.keymap.set(
+ "n",
+ "<s-a-h>",
+ "<cmd>Treewalker SwapLeft<cr>",
+ {
+ silent = true,
+ desc = "Swap the node under the cursor with its previous neighbor",
+ }
+)
+vim.keymap.set(
+ "n",
+ "<s-a-l>",
+ "<cmd>Treewalker SwapRight<cr>",
+ {
+ silent = true,
+ desc = "Swap the node under the cursor with its next neighbor",
+ }
+)
require("nvim-treesitter").install({
"awk",