mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 13:43:02 +00:00
13 lines
201 B
Lua
13 lines
201 B
Lua
return {
|
|
"zbirenbaum/copilot.lua",
|
|
cmd = "Copilot",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("copilot").setup({
|
|
filetypes = {
|
|
["*"] = true,
|
|
},
|
|
})
|
|
end,
|
|
}
|