From cb18ae366692f8e20a6c54b2207e39a2537689d3 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 2 Sep 2023 18:43:16 -0500 Subject: [PATCH] feat(nvim): add nvim-treesitter-endise --- dots/.config/nvim/lua/plugins/configs/treesitter.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dots/.config/nvim/lua/plugins/configs/treesitter.lua b/dots/.config/nvim/lua/plugins/configs/treesitter.lua index d6cb790c..6be4be39 100644 --- a/dots/.config/nvim/lua/plugins/configs/treesitter.lua +++ b/dots/.config/nvim/lua/plugins/configs/treesitter.lua @@ -122,6 +122,7 @@ return { }, "JoosepAlviste/nvim-ts-context-commentstring", "nvim-treesitter/nvim-treesitter-textobjects", + "RRethy/nvim-treesitter-endwise" }, config = function() local treesitter_dir = vim.fn.stdpath("data") .. "/treesitter" @@ -178,6 +179,9 @@ return { context_commentstring = { enable = true, }, + endwise = { + enable = true + }, textobjects = { select = { enable = true,