diff options
| author | 2020-01-13 22:30:22 -0500 | |
|---|---|---|
| committer | 2020-01-13 22:30:22 -0500 | |
| commit | 1c0068229111351ca6ecde7d22bfd8c0bf05c92b (patch) | |
| tree | 8df34fd9c1f531f1a7a2c4674ebdf21ce71a5aff /dot_zsh/plugins/exa | |
| parent | add bin symlink and auto-create target directory (diff) | |
zsh: add common toasty plugins I use
Diffstat (limited to '')
| -rw-r--r-- | dot_zsh/plugins/exa | 9 |
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' |
