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.
21 lines
443 B
Lua
21 lines
443 B
Lua
-- 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
|