nvim/lua/custom/plugins/gopher.lua

11 lines
185 B
Lua
Raw Permalink Normal View History

2024-01-02 16:41:51 -03:00
return {
"olexsmir/gopher.nvim",
ft = "go",
config = function(_, opts)
require("gopher").setup(opts)
end,
build = function()
vim.cmd [[silent! GoInstallDeps]]
end
}