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

12 lines
239 B
Nix
Raw Normal View History

{
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>")
'';
};
}