copilot.lua (470B)
1 return { 2 "zbirenbaum/copilot.lua", 3 cmd = "Copilot", 4 event = "InsertEnter", 5 requires = { 6 "copilotlsp-nvim/copilot-lsp", 7 }, 8 config = function() 9 require("copilot").setup({ 10 filetypes = { 11 yaml = false, 12 markdown = false, 13 help = false, 14 gitcommit = false, 15 gitrebase = false, 16 hgcommit = false, 17 txt = false, 18 svn = false, 19 cvs = false, 20 ["."] = false, 21 }, 22 }) 23 end, 24 }