-- https://github.com/ray-x/go.nvim -- A modern go neovim plugin based on treesitter, nvim-lsp and dap debugger. local M = { 'ray-x/go.nvim' } M.name = 'go' M.event = { 'CmdlineEnter' } M.ft = { 'go', 'gomod' } M.dependencies = { -- https://github.com/ray-x/guihua.lua -- Guihua: A Lua Gui and util library for nvim plugins 'ray-x/guihua.lua', 'lspconfig', 'treesitter', } function M.config() require("go").setup() end return M