feat: html autoclose

This commit is contained in:
tsorabel 2024-04-06 22:23:34 +02:00
parent 5c5a1f282e
commit c0a946044e
1 changed files with 8 additions and 0 deletions

View File

@ -14,7 +14,15 @@ return {
vim.keymap.set({ 'n' }, '<leader>tt', '<cmd>Tagbar<CR>', { desc = '[T]oggle [T]agbar' })
end,
},
{
'windwp/nvim-ts-autotag',
ft = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'html', 'markdown' },
config = function()
require('nvim-ts-autotag').setup()
end,
},
--Terminal
--
-- { 'akinsho/toggleterm.nvim', version = '*', config = true },
}