sauce-nvim-config/lua/themenacesauce/plugins/emmet.lua

9 lines
250 B
Lua

return {
-- here only for wrapping html tags
-- emmet_ls is alread installed in mason
"olrtg/nvim-emmet",
config = function()
vim.keymap.set({ "n", "v" }, '<leader>xe', require('nvim-emmet').wrap_with_abbreviation)
end,
}