From 7fce1b243c61d7c57db369c28305828977b8f3c3 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 30 Nov 2024 18:46:16 +0100 Subject: golang: replace fish abbrs with shell aliases --- user/settings/development/golang.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'user/settings') diff --git a/user/settings/development/golang.nix b/user/settings/development/golang.nix index c0f92209..34a74896 100644 --- a/user/settings/development/golang.nix +++ b/user/settings/development/golang.nix @@ -15,6 +15,13 @@ home.sessionPath = [ "$HOME/go/bin" ]; + home.shellAliases = { + gom = "go mod"; + gomt = "go mod tidy"; + gomd = "go mod download"; + gog = "go get"; + gogu = "go get -u"; + }; home.sessionVariables.GOTOOLCHAIN = "local"; # use installed go tools programs.emacs.extraPackages = epkgs: (with epkgs; [ go-eldoc @@ -24,8 +31,4 @@ programs.neovim.plugins = with pkgs.vimPlugins; [ coc-go ]; - programs.fish.shellAbbrs = { - gmt = "go mod tidy"; - gmd = "go mod download"; - }; } -- cgit 1.4.1