10 lines
151 B
Nix
10 lines
151 B
Nix
|
{
|
||
|
flake.modules.nixvim.custom.autoCmd = [
|
||
|
{
|
||
|
event = "BufNewFile";
|
||
|
pattern = [ "*.php" ];
|
||
|
command = "0r ${./php}";
|
||
|
}
|
||
|
];
|
||
|
}
|