-- Copilot must be enabled in comnfig/options.lua or config/local.lua if vim.g.copilot ~= true then return {} end -- copilot depends on node if vim.fn.executable("node") ~= 1 then vim.notify("Copilot depends on node. Couldn't find node.", 3) return {} end -- TODO: -- - stop cmp when whitespace only -- - fix indentation on insert -- filetypes copilot is enabled for is configured in vim.g.copilot_ft local filetypes = {} for _, f in ipairs(vim.g.copilot_ft) do filetypes[f] = true end filetypes["*"] = false return { -- copilot { import = "lazyvim.plugins.extras.ai.copilot", }, { -- https://github.com/zbirenbaum/copilot.lua "zbirenbaum/copilot.lua", build = ":Copilot auth", --ft = ft, opts = { suggestion = { enabled = false }, panel = { enabled = false }, filetypes = filetypes, }, }, { import = "lazyvim.plugins.extras.ai.copilot-chat", }, { -- https://github.com/CopilotC-Nvim/CopilotChat.nvim "CopilotC-Nvim/CopilotChat.nvim", opts = { question_header = "# User", window = { width = 0.4, }, }, }, }