Setup go with nvim

This commit is contained in:
2023-09-02 20:17:57 +02:00
parent 8771270f3c
commit ca8edeba83
3 changed files with 26 additions and 0 deletions

View File

@@ -56,6 +56,22 @@ local plugins = {
end,
},
-- development
{
"ray-x/go.nvim",
dependencies = {
"ray-x/guihua.lua",
"neovim/nvim-lspconfig",
"nvim-treesitter/nvim-treesitter",
},
config = function()
require("taken.plugins.lazy.go")
end,
ft = { "go", "gomod" },
build = function()
require("go.install").update_all_sync()
end,
},
{
"github/copilot.vim",
event = "VimEnter",