refactor(nvim): define xml filetype to html in ts registration

This commit is contained in:
Price Hiller 2023-06-16 19:32:40 -05:00
parent 3c5dfbb063
commit c0517686fc
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,3 @@ local opt_local = vim.opt_local
opt_local.tabstop = 2
opt_local.shiftwidth = 2
opt_local.filetype = "html"

View File

@ -15,6 +15,7 @@ M.setup = function()
vim.treesitter.language.register("yaml", "azure-pipelines")
vim.treesitter.language.register("gitignore", "dockerignore")
vim.treesitter.language.register("html", "xml")
end
return M