From d4ca2e79b3df807f548d247d6efaaecc4b573ed9 Mon Sep 17 00:00:00 2001 From: Saibotk Date: Mon, 20 Jan 2025 16:09:04 +0100 Subject: [PATCH] feat: add eza as 'ls' replacement --- macos/Brewfile | 1 + zsh/aliases.zsh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/macos/Brewfile b/macos/Brewfile index 90fba61..d77ac93 100644 --- a/macos/Brewfile +++ b/macos/Brewfile @@ -106,6 +106,7 @@ cask 'gpg-suite' # GPG handling for signing commits and email (SSH signing can a cask 'imageoptim' # Tool to optimize images / svgs cask 'jordanbaird-ice' # Bartender replacement for cleaner menubar brew 'starship' # fancy shell prompt +brew 'eza' # fancy ls replacement cask 'ghostty' # Better terminal cask 'rectangle' # Better snap to edge behavior than native cask 'raycast' # Better spotlight search diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 143d927..a5e2ef8 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -21,7 +21,8 @@ fi # General alias reloadshell="source $HOME/.zshrc" -alias ll="ls -AhlFo --color --group-directories-first" +alias ls="eza" +alias ll="eza -al --icons --group-directories-first" alias shrug="echo '¯\_(ツ)_/¯' | clip" alias c="clear" alias compile="commit 'compile'"