diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-20 13:45:32 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-20 13:45:32 +0100 |
commit | b8741890ec8922426ca393e181df5769cd53a0f9 (patch) | |
tree | 2e7767c72436f1ab3a2895ef085e103cee8beaf3 /.config/zsh/programs.zsh | |
parent | 325d75531153da1a317e219f2e5da85abbe7ea48 (diff) |
refactor zsh
Diffstat (limited to '.config/zsh/programs.zsh')
-rw-r--r-- | .config/zsh/programs.zsh | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/.config/zsh/programs.zsh b/.config/zsh/programs.zsh deleted file mode 100644 index d8e827e..0000000 --- a/.config/zsh/programs.zsh +++ /dev/null @@ -1,42 +0,0 @@ -if command -v exa > /dev/null; then - alias ls='exa -al --color=always --group-directories-first' # my preferred listing - alias la='exa -a --color=always --group-directories-first' # all files and dirs - alias ll='exa -l --color=always --group-directories-first' # long format - alias lt='exa -aT --color=always --group-directories-first' # tree listing - alias l.='exa -a | egrep "^\."' -else - echo "install exa" -fi - -if command -v bat > /dev/null; then - alias cat='bat' -else - echo "install bat" -fi - -if command -v rg > /dev/null; then - alias grep='rg' -else - echo "install ripgrep" -fi - -if command -v fd > /dev/null; then - alias find='fd' -else - echo "install fd" -fi - -if ! command -v tokei > /dev/null; then - echo "install tokei" -fi - -if command -v procs > /dev/null; then - alias ps='procs' -else - echo "install procs" -fi - -if ! command -v btm > /dev/null; then - echo "install bottom" -fi - |