mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-28 15:02:23 +00:00
10 lines
432 B
Lua
10 lines
432 B
Lua
|
-- [nfnl] Compiled from fnl/dots/plugins/emmet.fnl by https://github.com/Olical/nfnl, do not edit.
|
||
|
local utils = require("dots.utils")
|
||
|
local function setup()
|
||
|
vim.g.user_emmet_mode = "n"
|
||
|
vim.g.user_emmet_leader_key = "<leader>e"
|
||
|
vim.g.user_emmet_settings = {["javascript.jsx"] = {extends = "jsx"}, ["typescript.jsx"] = {extends = "jsx"}}
|
||
|
return nil
|
||
|
end
|
||
|
return {utils.plugin("mattn/emmet-vim", {lazy = true, config = setup})}
|