Bug fix with colored ls

This commit is contained in:
pauljako 2024-08-23 22:29:31 +02:00
parent 7e29296330
commit 6f3eda27a2

6
.zshrc
View file

@ -12,9 +12,6 @@ OMP_THEME="basic"
# Code: # Code:
# #
# #
# Colored ls
alias ls=ls --color=auto
#
# Detect Device Arch # Detect Device Arch
arch="$(uname -m | tr '[:upper:]' '[:lower:]')" arch="$(uname -m | tr '[:upper:]' '[:lower:]')"
@ -70,3 +67,6 @@ ZINIT_HOME="$HOME/.config/zinit/zinit.git"
[ ! -d $ZINIT_HOME/.git ] && git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME" [ ! -d $ZINIT_HOME/.git ] && git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
# Initialize zinit # Initialize zinit
source "${ZINIT_HOME}/zinit.zsh" source "${ZINIT_HOME}/zinit.zsh"
#
# Colored ls
alias ls="ls --color=auto"