1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-10-01 10:49:08 +00:00
Files
dotfiles/.config/nvim/lua/plugins/copilot.lua

24 lines
416 B
Lua

require("copilot").setup({
suggestion = { enabled = false },
panel = { enabled = false },
copilot_model = "claude-4",
filetypes = {
dockerfile = true,
go = true,
gothtmltmpl = true,
gotexttmpl = true,
hcl = true,
helm = true,
javascript = true,
json = true,
lua = true,
make = true,
markdown = true,
python = true,
sh = true,
typescript = true,
yaml = true,
["*"] = false,
},
})