summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/ts-autotag.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
committerSquibid <me@zacharyscheiman.com>2025-05-06 16:51:24 -0500
commit7c3289fded1f75f6e060f56bd06edc2a327744d9 (patch)
treebf579e6eb1de84237a74ef13ce67703c15266afe /lua/conf/plugins/ts-autotag.lua
parent3094bf2a3983b375f4adeccd25c3b12bbbded2aa (diff)
downloadnvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.gz
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.bz2
nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.zip
kitchen sink again :(
Diffstat (limited to 'lua/conf/plugins/ts-autotag.lua')
-rw-r--r--lua/conf/plugins/ts-autotag.lua9
1 files changed, 3 insertions, 6 deletions
diff --git a/lua/conf/plugins/ts-autotag.lua b/lua/conf/plugins/ts-autotag.lua
index 915ddad..5391d90 100644
--- a/lua/conf/plugins/ts-autotag.lua
+++ b/lua/conf/plugins/ts-autotag.lua
@@ -1,11 +1,8 @@
-return { 'windwp/nvim-ts-autotag',
- requires = {
- 'nvim-telescope/telescope.nvim',
- 'nvim-treesitter/nvim-treesitter'
- },
+return { "windwp/nvim-ts-autotag",
+ requires = "nvim-treesitter/nvim-treesitter",
disable = not vim.fn.has("nvim-0.9.5"),
function()
- require('nvim-ts-autotag').setup {}
+ require("nvim-ts-autotag").setup {}
end
}