Add exa
This commit is contained in:
parent
b35be562d4
commit
72e659f314
1 changed files with 3 additions and 3 deletions
|
@ -4,8 +4,8 @@ sudo apt-add-repository ppa:fish-shell/release-3 -y
|
||||||
# Updates the list
|
# Updates the list
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
|
||||||
# Install Fish, fzf (for the reverse search), bat (for the colored manuals), procps (for the SSH), curl (for downloading scripts)
|
# 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 -y
|
sudo apt install fish fzf bat procps curl exa -y
|
||||||
echo -e "\nFish installed!"
|
echo -e "\nFish installed!"
|
||||||
|
|
||||||
# Fish default shell
|
# 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'
|
fish -c 'set -U fish_pager_color_progress brwhite --background=cyan'
|
||||||
|
|
||||||
# Adding abbrevations
|
# Adding abbrevations
|
||||||
fish -c "abbr ls 'ls -lh'"
|
fish -c "abbr ls 'exa -lh'"
|
||||||
fish -c "abbr cp 'cp -rv'"
|
fish -c "abbr cp 'cp -rv'"
|
||||||
fish -c "abbr rm 'rm -rf'"
|
fish -c "abbr rm 'rm -rf'"
|
||||||
fish -c "abbr gcc 'gcc -Wall -Wextra -fanalyzer -g'"
|
fish -c "abbr gcc 'gcc -Wall -Wextra -fanalyzer -g'"
|
||||||
|
|
Reference in a new issue