From 17e12ebdeba82059feba607bce203db6b731e6f7 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 9 Feb 2024 16:14:44 +0100 Subject: [PATCH] bash_aliases: Fix ls colors alias not being applied --- shell/bash/.bash_aliases | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shell/bash/.bash_aliases b/shell/bash/.bash_aliases index 958d58d..d15a66d 100644 --- a/shell/bash/.bash_aliases +++ b/shell/bash/.bash_aliases @@ -13,10 +13,6 @@ alias gc="git commit" alias gp="git push" alias gpl="git pull" -# Generic stuff -alias ls="ls --color=auto" -alias ip="ip --color=auto" - # uutils-coreutils aliases if command -v pacman &> /dev/null; then if pacman -Qi uutils-coreutils &> /dev/null; then @@ -26,3 +22,7 @@ if pacman -Qi uutils-coreutils &> /dev/null; then alias ls="uu-ls --color=auto" fi fi + +# Generic stuff +alias ls="ls --color=auto" +alias ip="ip --color=auto"