home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1f909ccbb5cd079ed41af14087b848a6895ddb83
parent 02e39cea3ac29bdf7d7192c6ba403738e6d915c4
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu,  6 Sep 2018 14:14:30 +0200

Add more fish abbrs for general dev and go 👼

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mdev.go.nix | 5+++++
Mdev.nix | 3+++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/dev.go.nix b/dev.go.nix @@ -3,6 +3,11 @@ { imports = [ ./dev.nix ]; xdg.configFile."fish/conf.d/go.fish".source = ./fish/go.fish; + programs.fish.shellAbbrs = { + got = "go test -v"; + gob = "go build -v"; + gol = "golangci-lint run"; + }; home.packages = with pkgs; [ go gcc diff --git a/dev.nix b/dev.nix @@ -2,6 +2,9 @@ { imports = [ ./git.nix ./emacs.nix ]; + programs.fish.shellAbbrs = { + m = "make"; + }; home.packages = with pkgs; [ gnumake cmake