1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-11-14 17:01:12 +00:00

[neovim] Enable hcl files in copilot

This commit is contained in:
Daniel Carrillo 2024-09-20 10:15:23 +02:00
parent 4dbd86b344
commit 32417a0bce
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16

View File

@ -2,14 +2,15 @@ require("copilot").setup({
suggestion = { enabled = false }, suggestion = { enabled = false },
panel = { enabled = false }, panel = { enabled = false },
filetypes = { filetypes = {
javascript = true,
typescript = true,
go = true, go = true,
hcl = true,
javascript = true,
json = true,
lua = true, lua = true,
python = true, python = true,
sh = true, sh = true,
typescript = true,
yaml = true, yaml = true,
json = true,
["*"] = false, ["*"] = false,
}, },
}) })