diff options
author | Starfall <us@starfall.systems> | 2021-10-06 20:38:12 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2021-10-06 20:38:12 -0500 |
commit | 6faf8424742630f18012dde685627764c0671bc3 (patch) | |
tree | f5f06bf1078aab75d451efcdeddb2f527d49f3aa /.config/zsh/.zshrc | |
parent | 017d57343b7449abc916af4266c2fba1734e0345 (diff) |
zsh: spacetotab the .zshrc
Diffstat (limited to '.config/zsh/.zshrc')
-rw-r--r-- | .config/zsh/.zshrc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index b95a0ca..05c0378 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -27,13 +27,13 @@ if command -v exa &>/dev/null; then alias ls='exa' alias ll='exa --long --header --all' elif ls --color 1>/dev/null 2>&1; then - # gnu ls - alias ls='ls --color=auto' - alias ll='ls -l --almost-all --no-group --human-readable' + # gnu ls + alias ls='ls --color=auto' + alias ll='ls -l --almost-all --no-group --human-readable' else - # bsd/mac ls - export CLICOLOR='1' - alias ll='ls -hoA' + # bsd/mac ls + export CLICOLOR='1' + alias ll='ls -hoA' fi # dots go up |