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