-- You can add your own plugins here or in other files in this directory! -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information return { { 'ayu-theme/ayu-vim', priority = 999, config = function() vim.cmd.colorscheme 'ayu' end, }, { "zbirenbaum/copilot.lua", cmd = "Copilot", build = ":Copilot auth", opts = { suggestion = { enabled = false }, panel = { enabled = false }, filetypes = { markdown = true, help = true, }, }, }, { 'hrsh7th/nvim-cmp', dependencies = { { "zbirenbaum/copilot-cmp", dependencies = "copilot.lua", opts = {}, config = function(_, opts) local copilot_cmp = require("copilot_cmp") copilot_cmp.setup(opts) end, }, }, }, }