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