marleyvim/nvim/lua/plugins/editor/nvim-emmet.lua

12 lines
192 B
Lua
Raw Normal View History

2025-01-05 11:15:03 -08:00
return {
'nvim-emmet',
keys = {
{
'<LEADER>xe',
require('nvim-emmet').wrap_with_abbreviation,
mode = { 'n', 'v' },
desc = 'wrap with emmet abbr',
},
},
}