How to enable emmet for .ejs file in lazy nvim
i want to enable the abbrevation in
Here is my config
.ejs.ejs file in nvim (lazy vim). I have installed the emmetemmet but it is not working in .ejs.ejs file.Here is my config
return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
emmet_ls = {
filetypes = {
"html",
"typescriptreact",
"javascriptreact",
"css",
"sass",
"scss",
"less",
"javascript",
"typescript",
"markdown",
"ejs",
},
init_options = {
html = {
options = {
-- For possible options, see: https://github.com/emmetio/emmet/blob/master/src/config.ts#L79-L26
["bem.enabled"] = true,
},
},
},
},
},
},
},
}return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
emmet_ls = {
filetypes = {
"html",
"typescriptreact",
"javascriptreact",
"css",
"sass",
"scss",
"less",
"javascript",
"typescript",
"markdown",
"ejs",
},
init_options = {
html = {
options = {
-- For possible options, see: https://github.com/emmetio/emmet/blob/master/src/config.ts#L79-L26
["bem.enabled"] = true,
},
},
},
},
},
},
},
}