admin管理员组文章数量:1401499
I have configured the gopls LSP as shown below in lspconfig.lua:
lspconfig.gopls.setup {
on_attach = on_attach,
on_init = on_init,
capabilities = capabilities,
cmd = {"gopls"},
filetypes = {"go", "gomod", "gowork", "gotmpl"},
root_dir = util.root_pattern("go.work", "go.mod", ".git"),
settings = {
gopls = {
completeUnimported = true,
usePlaceHolders = true,
}
}
}
However when I open a .go file and run LspInfo, no lsp is attached. When I check mason, gopls is installed. It also works when I manually load it via lua vim.lsp.start({ name = "gopls", cmd = { "/home/user/.local/share/nvim/mason/bin/gopls" } }) command, the lsp loads up successfully
本文标签: nvim lspconfigGoPls LSP is not loading manually when I open a go fileStack Overflow
版权声明:本文标题:nvim lspconfig - GoPls LSP is not loading manually when I open a .go file - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744273772a2598312.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论