diff options
author | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:48:27 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-11-19 13:49:39 -0600 |
commit | 85f45b675858d2e0d0792fe11de84320fe98b597 (patch) | |
tree | e2a5545ede4fcef3a05fbc5c38eeb4675acb0183 /lua | |
parent | 54d41440435b7f64d501a74e754dfc0b652f6712 (diff) | |
download | nvim-85f45b675858d2e0d0792fe11de84320fe98b597.tar.gz nvim-85f45b675858d2e0d0792fe11de84320fe98b597.tar.bz2 nvim-85f45b675858d2e0d0792fe11de84320fe98b597.zip |
add ts-autotag to make renaming html tags really easy
Diffstat (limited to '')
-rw-r--r-- | lua/conf/plugins/ts-autotag.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/conf/plugins/ts-autotag.lua b/lua/conf/plugins/ts-autotag.lua new file mode 100644 index 0000000..d27ad57 --- /dev/null +++ b/lua/conf/plugins/ts-autotag.lua @@ -0,0 +1,8 @@ +return { 'windwp/nvim-ts-autotag', + requires = 'nvim-telescope/telescope.nvim', + disable = vim.version.lt(vim.version(), { 0, 9, }), + + function() + require('nvim-ts-autotag').setup {} + end +} |