1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-02 02:49:26 +00:00

[neovim] Enable hcl files in copilot

This commit is contained in:
2024-09-20 10:15:23 +02:00
parent 4dbd86b344
commit 32417a0bce

View File

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