11 lines
185 B
Lua
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
|
||
|
}
|