nix-config/modules/nixvim/ftplugin/go.nix
Oliver Davies 22ed68a46e
All checks were successful
/ check (push) Successful in 54s
Configure makeprg for PHP, AsciiDoc and Go files
2025-08-30 22:15:46 +01:00

9 lines
157 B
Nix

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