switched to lsd from eza

This commit is contained in:
JaKooLit
2025-03-06 22:56:00 +09:00
parent 16f1b2418d
commit e87f6c1beb
3 changed files with 11 additions and 5 deletions

View File

@@ -25,10 +25,12 @@ source $ZSH/oh-my-zsh.sh
# fastfetch. Will be disabled if above colorscript was chosen to install
fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc
# Set-up icons for files/folders in terminal
alias ls='eza -a --icons'
alias ll='eza -al --icons'
alias lt='eza -a --tree --level=1 --icons'
# Set-up icons for files/folders in terminal using lsd
alias ls='lsd'
alias l='ls -l'
alias la='ls -a'
alias lla='ls -la'
alias lt='ls --tree'
# Set-up FZF key bindings (CTRL R for fuzzy history finder)
source <(fzf --zsh)