23 lines
465 B
Nix
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";
|
|
}
|
|
];
|
|
}
|