nix-config/modules/nixvim/ftplugin/php.nix

10 lines
162 B
Nix
Raw Permalink Normal View History

{
flake.modules.nixvim.custom = {
extraFiles."after/ftplugin/php.lua".text =
# lua
''
vim.opt_local.makeprg = "php %";
'';
};
}