From 53cdc8b5cbfc2d00702cc06a9c716f3a7baff232 Mon Sep 17 00:00:00 2001 From: Tine Date: Thu, 16 May 2024 22:13:23 +0200 Subject: [PATCH] feat: tools and git aliases --- bat/config | 2 +- nix/core.nix | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bat/config b/bat/config index e6d5f50..db721e2 100644 --- a/bat/config +++ b/bat/config @@ -1,2 +1,2 @@ --italic-text='always' ---theme=OneHalfLight +--theme=OneHalfDark diff --git a/nix/core.nix b/nix/core.nix index 93c91ed..8985da6 100644 --- a/nix/core.nix +++ b/nix/core.nix @@ -40,6 +40,7 @@ ctop bottom tailscale + rename # Nodejs nodejs_20 @@ -182,6 +183,9 @@ "gicm" = "(git checkout main || git checkout master) && git pull"; "gic" = "git checkout"; "gip" = "git pull"; + "ga" = "git add"; + "gc" = "git commit"; + "gr" = "git stash && gicm && git rebase main"; }; };