22 lines
509 B
Lua
22 lines
509 B
Lua
-- return {
|
|
-- 'fatih/vim-go',
|
|
-- }
|
|
return {
|
|
"ray-x/go.nvim",
|
|
dependencies = { -- optional packages
|
|
"ray-x/guihua.lua",
|
|
"neovim/nvim-lspconfig",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
config = function()
|
|
require("go").setup()
|
|
|
|
local gofmt = require("go.format")
|
|
|
|
vim.keymap.set('n', 'gF', gofmt.goimport, { desc = 'Go Import' })
|
|
end,
|
|
event = { "CmdlineEnter" },
|
|
ft = { "go", 'gomod' },
|
|
build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
|
|
}
|