cmc/dotfiles

Using GNU Stow to manage my dotfiles.

clone: git clone https://gitbay.org/cmc/dotfiles.git

b54339832ecb3c905434edb76cfc70e93f70e0d3

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-02-18T01:27:17Z

add aliases
 common/zsh/.zshrc | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/common/zsh/.zshrc b/common/zsh/.zshrc
index aab6477..d7e6293 100644
--- a/common/zsh/.zshrc
+++ b/common/zsh/.zshrc
@@ -72,7 +72,12 @@ fi
 # 5. ALIASES
 # ==============================================================================
 
-alias l="ls -lha"
+alias l='eza -lah --icons --git --group-directories-first --header'
+alias cd="z"
+alias cat="bat"
+alias mkdir="mkdir -p"
+alias grep="ripgrep"
+alias find="fd"
 alias emacs="emacs -nw"
 alias xclean="find . -name '.DS_Store' -type f -delete"
 
@@ -118,3 +123,7 @@ ZSH_HIGHLIGHT_STYLES[command]='fg=green'
 ZSH_HIGHLIGHT_STYLES[builtin]='fg=magenta'
 ZSH_HIGHLIGHT_STYLES[path]='fg=white,underline'
 ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
+
+# zoxide
+eval "$(zoxide init zsh)"
+