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

10 lines
157 B
Nix
Raw Permalink Normal View History

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