nvim/lua/custom/mappings.lua

14 lines
165 B
Lua
Raw Permalink Normal View History

2024-01-08 19:53:30 +01:00
local M = {}
M.gopher = {
plugins = true,
n = {
2024-01-12 19:15:02 +01:00
["<leader>gtj"] = {
2024-01-08 19:53:30 +01:00
"<cmd> GoTagAdd json <CR>",
"Add json tag to struct"
},
}
}
return M