From ff0e6d655365749808820393e354b0bf907a1186 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 13 May 2024 22:05:03 -0500 Subject: [PATCH] refactor(nvim): use own fork of `nvim-ts-autotag` --- .../nvim/lua/plugins/configs/treesitter.lua | 34 +------------------ 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/users/price/dots/.config/nvim/lua/plugins/configs/treesitter.lua b/users/price/dots/.config/nvim/lua/plugins/configs/treesitter.lua index 8fc4ab7a..7f246c76 100644 --- a/users/price/dots/.config/nvim/lua/plugins/configs/treesitter.lua +++ b/users/price/dots/.config/nvim/lua/plugins/configs/treesitter.lua @@ -38,41 +38,9 @@ return { end, }, { - "windwp/nvim-ts-autotag", + "PriceHiller/nvim-ts-autotag", dependencies = { "nvim-treesitter/nvim-treesitter" }, event = { "BufReadPre", "BufNewFile" }, - opts = { - filetypes = { - "astro", - "glimmer", - "handlebars", - "html", - "javascript", - "jsx", - "php", - "rescript", - "svelte", - "tsx", - "typescript", - "vue", - "xml", - }, - }, - ft = { - "astro", - "glimmer", - "handlebars", - "html", - "javascript", - "jsx", - "php", - "rescript", - "svelte", - "tsx", - "typescript", - "vue", - "xml", - }, }, { url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim",