diff options
author | Alan Pearce | 2020-04-09 13:18:23 +0200 |
---|---|---|
committer | Alan Pearce | 2020-04-09 13:18:23 +0200 |
commit | 40088849384907351ebea8defd9c92ee692a3f52 (patch) | |
tree | ff5e8fcb8e8e28fcbf5e9b238b5cfa96c1c8b0ce | |
parent | fe5710eeea8a241f9b11c8bf95b3e609bd80b65b (diff) | |
download | nixfiles-40088849384907351ebea8defd9c92ee692a3f52.tar.lz nixfiles-40088849384907351ebea8defd9c92ee692a3f52.tar.zst nixfiles-40088849384907351ebea8defd9c92ee692a3f52.zip |
Add more common shell aliases
-rw-r--r-- | user/settings/javascript.nix | 2 | ||||
-rw-r--r-- | user/settings/zsh.nix | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/user/settings/javascript.nix b/user/settings/javascript.nix index 197eb86c..dd89c5b3 100644 --- a/user/settings/javascript.nix +++ b/user/settings/javascript.nix @@ -66,7 +66,9 @@ in pit = "pnpm install-test --filter=."; pl = "pnpm ls"; pr = "pnpm run"; + pb = "pnpm run build"; prb = "pnpm run build"; + pbd = "pnpm multi run build --filter={.}..."; pmi = "pnpm multi install"; pmx = "pnpm multi exec "; # expand command aliases pmr = "pnpm multi run"; diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 3fb6d57d..4eafb0fe 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -180,6 +180,7 @@ in ge = "git remote"; gr = "git rebase"; gz = "git stash"; + gls = "git ls-files"; gzl = "git stash list"; gzp = "git stash pop"; gdt = "git difftool"; |