nixvim/config/file_types.nix
2024-05-28 22:34:32 +02:00

23 lines
465 B
Nix

{
autoGroups = {
filetypes = {};
};
files."ftdetect/terraformft.lua".autoCmd = [
{
group = "filetypes";
event = ["BufRead" "BufNewFile"];
pattern = ["*.tf" " *.tfvars" " *.hcl"];
command = "set ft=terraform";
}
];
files."ftdetect/bicepft.lua".autoCmd = [
{
group = "filetypes";
event = ["BufRead" "BufNewFile"];
pattern = ["*.bicep" "*.bicepparam"];
command = "set ft=bicep";
}
];
}