blob: fe02344a551a84dadffcf0f26a58c6f8ffd688c2 [file] [log] [blame]
Copybara botca5ce642024-11-08 17:38:08 +01001return {
2{{if eq .env "work" -}}
3 {
4 'zbirenbaum/copilot.lua',
5 config = function()
6 require('copilot').setup({
7 suggestion = { enabled = false },
8 panel = { enabled = false },
9 })
10 end,
11 },
12 {
13 "CopilotC-Nvim/CopilotChat.nvim",
14 branch = "canary",
15 dependencies = {
16 { "zbirenbaum/copilot.lua" },
17 { "nvim-lua/plenary.nvim" },
18 },
19 build = "make tiktoken",
20 config = function()
21 require("CopilotChat").setup()
22 end,
23 },
24{{- end}}
25}