Replies: 1 comment
-
First thing I suggest is updating lsp-zero's version: Change the branch from Next step is to delete whatever configuration you have for lsp-zero right now, and replace it with this: local lsp_zero = require('lsp-zero')
lsp_zero.on_attach(function(client, bufnr)
-- see :help lsp-zero-keybindings
-- to learn the available actions
lsp_zero.default_keymaps({buffer = bufnr})
end)
-- see :help lsp-zero-guide:integrate-with-mason-nvim
-- to learn how to use mason.nvim with lsp-zero
require('mason').setup({})
require('mason-lspconfig').setup({
handlers = {
lsp_zero.default_setup,
}
}) This particular config does not offer the same set of features as if you want to re-enable some of the features from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've set up
lsp-zero
according to the recommendations, including this inpacker.lua
:Now I've followed the instructions to install and enable Github Copilot for Neovim. Out of the box,
:Copilot status
tells me that<Tab> map has been disabled or is claimed by another plugin
. Attempts to debug that are so far unsuccesful.Ideally I'd like completion to work seamlessly with Copilot and other autocompletion sources. But maybe I don't even need those when I'm running Copilot? Looking for advice here. Has anyone successfully gotten Copilot working with
lsp-zero
?Beta Was this translation helpful? Give feedback.
All reactions