refactor(nvim): set xml ft to html

Currently nvim-treesitter does not have xml built-in and with how wide
the spec is it makes sense to simply set xml to html for some amount of
treesitter support.
This commit is contained in:
Price Hiller 2023-05-05 04:24:36 -05:00
parent 1d8213b402
commit b033ab53ab
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

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