Files
nvim/lua/plugins/copilot.lua
2025-10-21 09:50:49 +01:00

22 lines
575 B
Lua

-- return {
-- 'zbirenbaum/copilot.lua',
-- event = 'InsertEnter',
-- config = function()
-- require('copilot').setup {
-- suggestion = {
-- enabled = true,
-- auto_trigger = true,
-- keymap = {
-- accept = '<Tab>',
-- },
-- },
-- filetypes = {
-- yaml = true,
-- markdown = true,
-- gitcommit = true,
-- gitrebase = true,
-- },
-- }
-- end,
-- }