nixvim/config/file_types.nix
2024-05-18 00:32:53 +02:00

14 lines
261 B
Nix

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