summaryrefslogtreecommitdiff
path: root/dot_zsh/plugins/exa
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2020-01-13 22:30:22 -0500
committerChloe Kudryavtsev <toast@toast.cafe>2020-01-13 22:30:22 -0500
commit1c0068229111351ca6ecde7d22bfd8c0bf05c92b (patch)
tree8df34fd9c1f531f1a7a2c4674ebdf21ce71a5aff /dot_zsh/plugins/exa
parentadd bin symlink and auto-create target directory (diff)
zsh: add common toasty plugins I use
Diffstat (limited to '')
-rw-r--r--dot_zsh/plugins/exa9
1 files changed, 9 insertions, 0 deletions
diff --git a/dot_zsh/plugins/exa b/dot_zsh/plugins/exa
new file mode 100644
index 0000000..a940f8c
--- /dev/null
+++ b/dot_zsh/plugins/exa
@@ -0,0 +1,9 @@
+#!/bin/zsh
+# removes default ls-likes, replaces them with exa variants
+unalias ls ll l la
+
+# old ones
+alias ls=exa ll='ls -l' l=ll la='l -a'
+# extras
+alias lr='l -T'
+alias lp='lr --git-ignore'