10 lines
162 B
Nix
10 lines
162 B
Nix
|
{
|
||
|
flake.modules.nixvim.custom = {
|
||
|
extraFiles."after/ftplugin/php.lua".text =
|
||
|
# lua
|
||
|
''
|
||
|
vim.opt_local.makeprg = "php %";
|
||
|
'';
|
||
|
};
|
||
|
}
|