Skip to content

Instantly share code, notes, and snippets.

@slabad
Created September 20, 2021 13:29
Show Gist options
  • Save slabad/96fbbab68324f6b326aa1b848101c250 to your computer and use it in GitHub Desktop.
Save slabad/96fbbab68324f6b326aa1b848101c250 to your computer and use it in GitHub Desktop.
mmcelheny alias example #bash #zsh
myaliases = {
# 'grep': 'grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn}',
# one char shortcuts
'h': 'history show all | less',
'c': 'clear',
# ls shortcuts
'l': 'ls -F',
'la': 'ls -lAfh',
'll': 'ls -lFh',
'ldot': 'ls -ld .*',
# macos
'brewup': 'brew update && brew upgrade',
'xshrc': 'nvim ~/.config/xonsh/xsh.rc',
'zz': 'exit',
'vim': 'nvim',
# quick dirs
'dotf': 'cd $DOTFILES',
'xdot': 'cd ~/.config/xonsh',
'zdot': 'cd ~/.config/zsh',
}
aliases.update(myaliases)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment