feat(nvim): enable close on slash for ts-autotag
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m19s

This commit is contained in:
Price Hiller 2024-05-18 02:19:03 -05:00
parent c30e8b1164
commit f7e253fe1d
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -41,7 +41,13 @@ return {
"PriceHiller/nvim-ts-autotag",
dependencies = { "nvim-treesitter/nvim-treesitter" },
event = { "BufReadPre", "BufNewFile" },
config = true,
config = function()
require("nvim-ts-autotag").setup({
opts = {
enable_close_on_slash = true,
},
})
end,
},
{
url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim",