Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dot_config/zsh/split/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ alias la='eza -la --icons --git'
alias lt='eza --tree --icons --level=2'
alias cat='bat --paging=never'

# Git: alias instead of abbr to override /usr/bin/gs (Ghostscript)
# abbr is turbo-loaded and may lose the race against PATH lookup
alias gs='git status -sb'

# Safe defaults
alias rm='rm -i'
alias cp='cp -i'
Expand Down
2 changes: 1 addition & 1 deletion dot_config/zsh/split/plugins.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ _zinit_setup_abbr() {
abbr -S -qq gl='git log --oneline -20'
abbr -S -qq gp='git push'
abbr -S -qq gpl='git pull'
abbr -S -qq gs='git status -sb'

abbr -S -qq gst='git status'
abbr -S -qq gsw='git switch'
abbr -S -qq gswc='git switch -c'
Expand Down