nix-config/modules/nixvim/templates/default.nix
2025-08-25 20:43:48 +01:00

9 lines
151 B
Nix

{
flake.modules.nixvim.custom.autoCmd = [
{
event = "BufNewFile";
pattern = [ "*.php" ];
command = "0r ${./php}";
}
];
}