You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
444 B
Lua

1 week ago
-- 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',
1 week ago
'lspconfig',
'treesitter',
}
1 week ago
function M.config()
require("go").setup()
end
return M