nvim/lua/custom/plugins/gopher.lua
2024-01-02 16:41:51 -03:00

11 lines
185 B
Lua

return {
"olexsmir/gopher.nvim",
ft = "go",
config = function(_, opts)
require("gopher").setup(opts)
end,
build = function()
vim.cmd [[silent! GoInstallDeps]]
end
}