nvim/lua/custom/mappings.lua

14 lines
165 B
Lua

local M = {}
M.gopher = {
plugins = true,
n = {
["<leader>gtj"] = {
"<cmd> GoTagAdd json <CR>",
"Add json tag to struct"
},
}
}
return M