all repos — nixfiles @ 353bec45b7db62576867b884624dff3b2d933b9c

System and user configuration, managed by nix and home-manager

dev/go: add shell abbreviations for go mod commands

Alan Pearce
commit

353bec45b7db62576867b884624dff3b2d933b9c

parent

573457f40c06a867f9613872ab41b43e61ed81f1

1 file changed, 4 insertions(+), 0 deletions(-)

jump to
M user/settings/development/golang.nixuser/settings/development/golang.nix
@@ -23,4 +23,8 @@ ]);
programs.neovim.plugins = with pkgs.vimPlugins; [ coc-go ]; + programs.fish.shellAbbrs = { + gmt = "go mod tidy"; + gmd = "go mod download"; + }; }