1vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, { 2 pattern = { "*.shtml" }, 3 callback = function() 4 vim.bo.filetype = "superhtml" 5 end, 6}) 7vim.filetype.add({ extension = { 8 shtml = "superhtml", 9} })