some new aliases and shell config
This commit is contained in:
parent
5d5ec0f7a1
commit
9ab4a9b2e4
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,7 @@ let
|
|||
# Nix
|
||||
ns = "nix-shell";
|
||||
nb = "nix build -f .";
|
||||
nc = "nix copy --to https://nix.urbinternal.com";
|
||||
"nc." = "nix copy -f . --to https://nix.urbinternal.com";
|
||||
|
||||
# Docker and friends
|
||||
|
@ -71,6 +72,7 @@ let
|
|||
"grim" = "git fetch && git rebase -i origin/master";
|
||||
"grc" = "git rebase --continue";
|
||||
"gcan" = "git commit --amend --no-edit";
|
||||
"grl" = "git reflog";
|
||||
|
||||
# Aliases from old config
|
||||
stck = "dirs -v";
|
||||
|
@ -131,6 +133,11 @@ in {
|
|||
|
||||
inherit shellAliases;
|
||||
|
||||
history = rec {
|
||||
save = 100000;
|
||||
size = save;
|
||||
};
|
||||
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue