Gustavo Silva (es00679121_prosegur) 480d1536f5 Add new keymaps and plugins
2024-02-12 18:59:26 +01:00

18 lines
402 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()
end,
event = { "CmdlineEnter" },
ft = { "go", 'gomod' },
build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
}