mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 02:23:50 -03:00
13 lines
280 B
Lua
13 lines
280 B
Lua
return {
|
|
"olexsmir/gopher.nvim",
|
|
ft = "go",
|
|
config = function(_, opts)
|
|
require("gopher").setup(opts)
|
|
vim.keymap.set("n", "<leader>gmt", ":GoMod tidy<cr>", {
|
|
desc = "[Go] Tidy",
|
|
})
|
|
end,
|
|
build = function()
|
|
vim.cmd([[silent! GoInstallDeps]])
|
|
end,
|
|
}
|