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