some new aliases and shell config

This commit is contained in:
Griffin Smith 2020-05-07 10:58:16 -04:00
parent 5d5ec0f7a1
commit 9ab4a9b2e4

View file

@ -14,6 +14,7 @@ let
# Nix # Nix
ns = "nix-shell"; ns = "nix-shell";
nb = "nix build -f ."; nb = "nix build -f .";
nc = "nix copy --to https://nix.urbinternal.com";
"nc." = "nix copy -f . --to https://nix.urbinternal.com"; "nc." = "nix copy -f . --to https://nix.urbinternal.com";
# Docker and friends # Docker and friends
@ -71,6 +72,7 @@ let
"grim" = "git fetch && git rebase -i origin/master"; "grim" = "git fetch && git rebase -i origin/master";
"grc" = "git rebase --continue"; "grc" = "git rebase --continue";
"gcan" = "git commit --amend --no-edit"; "gcan" = "git commit --amend --no-edit";
"grl" = "git reflog";
# Aliases from old config # Aliases from old config
stck = "dirs -v"; stck = "dirs -v";
@ -131,6 +133,11 @@ in {
inherit shellAliases; inherit shellAliases;
history = rec {
save = 100000;
size = save;
};
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;