fix(ai.copilot): disable copilot lsp if installed. copilot.lua needs its own version of the LSP

This commit is contained in:
Folke Lemaitre
2025-09-26 15:55:32 +02:00
parent 92b7fcf7b1
commit e9bc6074d1

View File

@@ -25,6 +25,17 @@ return {
},
},
-- copilot-language-server
{
"neovim/nvim-lspconfig",
opts = {
servers = {
-- copilot.lua only works with its own copilot lsp server
copilot = { enabled = false },
},
},
},
-- add ai_accept action
{
"zbirenbaum/copilot.lua",