-- 这里用来coplit AI的配置 return { { -- Copilot 懒加载:只在插入模式需要(和 nvim-cmp 共用 Tab 键,cmp 改用 C-n/C-p 避让) 'github/copilot.vim', -- github copilot event = "InsertEnter", }, { -- lazy.nvim 'newbieQQ/slot.nvim', url = 'https://github.com/newbieQQ/slot.nvim', config = function() require('slot').setup({ commands = { reasonix = 'reasonix', lazygit = 'lazygit', }, keymaps = { shell = { 'n', '' }, shell_i = { 'i', '' }, reasonix = { 'n', '' }, lazygit = { 'n', 'gg' }, }, }) end, } }