All checks were successful
/ check (push) Successful in 1m26s
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
11 lines
239 B
Nix
11 lines
239 B
Nix
{
|
|
flake.modules.nixvim.custom = {
|
|
extraFiles."after/ftplugin/go.lua".text =
|
|
# lua
|
|
''
|
|
vim.opt.makeprg = "go run %"
|
|
|
|
vim.keymap.set("n", "<leader>n", "iif err != nil {return err}<CR><ESC>")
|
|
'';
|
|
};
|
|
}
|