From 72e659f314890d46af0ebc494cd53984dbbc949a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 20 Jan 2022 11:55:03 +0100 Subject: [PATCH] Add exa --- installFish.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installFish.sh b/installFish.sh index ac29b66..62c22d8 100644 --- a/installFish.sh +++ b/installFish.sh @@ -4,8 +4,8 @@ sudo apt-add-repository ppa:fish-shell/release-3 -y # Updates the list sudo apt update -# Install Fish, fzf (for the reverse search), bat (for the colored manuals), procps (for the SSH), curl (for downloading scripts) -sudo apt install fish fzf bat procps curl -y +# Install Fish, fzf (for the reverse search), bat (for the colored manuals and cat), procps (for the SSH), curl (for downloading scripts), exa (for the better ls) +sudo apt install fish fzf bat procps curl exa -y echo -e "\nFish installed!" # Fish default shell @@ -55,7 +55,7 @@ fish -c 'set -U fish_pager_color_prefix normal --bold --underline' fish -c 'set -U fish_pager_color_progress brwhite --background=cyan' # Adding abbrevations -fish -c "abbr ls 'ls -lh'" +fish -c "abbr ls 'exa -lh'" fish -c "abbr cp 'cp -rv'" fish -c "abbr rm 'rm -rf'" fish -c "abbr gcc 'gcc -Wall -Wextra -fanalyzer -g'"