What are your most liked alias for long commands or just to give them better names.

Mine are:

alias load="source .load.sh"
alias eload="$EDITOR .load.sh"
alias gpush="git push"
alias gadd="git add --all"
alias gcommit="git commit -m "
alias gst="git status -s"
alias gpull="git pull"
  • I use fish abbreviations instead, that way I can still use tab completions (and I like it when i still see the full command):

        abbr ffzf "fzf --layout reverse-list --color --preview 'bat -p --color always {}' --preview-window right:wrap -e --info inline-right"
    
        abbr _light 'xfconf-query -c xsettings -p /Net/ThemeName -s Fluent-round-yellow-Light-compact && xfconf-query -c xsettings -p /Net/IconThemeName -s Fluent && xfconf-query -c xfwm4 -p /general/theme -s Next'  
        abbr _dark 'xfconf-query -c xsettings -p /Net/ThemeName -s Fluent-round-yellow-Dark-compact && xfconf-query -c xsettings -p /Net/IconThemeName -s Fluent-dark && xfconf-query -c xfwm4 -p /general/theme -s Next'
    
        # VOID SPECIFIC
        abbr xup 'sudo xbps-install -Suv'
        abbr xin 'sudo xbps-install -Rs'
        abbr xre 'sudo xbps-remove -Rv'
        abbr xor 'sudo xbps-remove -ov'
        abbr xs 'xbps-query -Rs'