From 6f3eda27a232211b92668ed859b4c268fc3da2c2 Mon Sep 17 00:00:00 2001 From: pauljako <126326487+pauljako@users.noreply.github.com> Date: Fri, 23 Aug 2024 22:29:31 +0200 Subject: [PATCH] Bug fix with colored ls --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 5290a9d..6196537 100644 --- a/.zshrc +++ b/.zshrc @@ -12,9 +12,6 @@ OMP_THEME="basic" # Code: # # -# Colored ls -alias ls=ls --color=auto -# # Detect Device Arch 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" # Initialize zinit source "${ZINIT_HOME}/zinit.zsh" +# +# Colored ls +alias ls="ls --color=auto"