refactor(nvim): move nvim-ts-autotag to separate file
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s

This commit is contained in:
Price Hiller 2024-07-14 15:11:08 -05:00
parent a35bd70536
commit 56c2a1b3aa
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 13 additions and 13 deletions

View File

@ -24,19 +24,6 @@ return {
},
},
},
{
"nvim-treesitter/nvim-treesitter-context",
event = { "BufReadPre", "BufNewFile" },
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("treesitter-context").setup({
max_lines = 3,
})
vim.cmd.TSContextEnable()
end,
},
{
"windwp/nvim-ts-autotag",
dependencies = { "nvim-treesitter/nvim-treesitter" },

View File

@ -0,0 +1,13 @@
return {
{
"windwp/nvim-ts-autotag",
event = { "BufReadPre", "BufNewFile" },
config = function()
require("nvim-ts-autotag").setup({
opts = {
enable_close_on_slash = true,
},
})
end,
},
}