diff options
| author | Christian Cleberg <[email protected]> | 2026-02-17 19:27:17 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-02-17 19:27:30 -0600 |
| commit | b54339832ecb3c905434edb76cfc70e93f70e0d3 (patch) | |
| tree | ced93abca6da7f9b9705777007c994fa5d3d65de /common | |
| parent | e7b699e4b3066e60cd5ceb1fef7b61d07a2450e3 (diff) | |
| download | dotfiles-b54339832ecb3c905434edb76cfc70e93f70e0d3.tar.gz dotfiles-b54339832ecb3c905434edb76cfc70e93f70e0d3.tar.bz2 dotfiles-b54339832ecb3c905434edb76cfc70e93f70e0d3.zip | |
add aliases
Diffstat (limited to 'common')
| -rw-r--r-- | common/zsh/.zshrc | 11 |
1 files changed, 10 insertions, 1 deletions
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)" + |
