summaryrefslogtreecommitdiff
path: root/dotfiles-darwin/zsh/rc
blob: 0971457aca3fb1e3d01a2d06f103be745d06d44a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- mode: shell-script -*-

alias df='df -Ph'
alias ls='ls -G'
alias lsh='du -a | sort -h'
alias pip=pip3
alias python=python3

() {
  local emacs=~/Applications/Emacs.app/Contents/MacOS/Emacs
  if ! which emacs >/dev/null && [[ -x ${emacs} ]]; then
    alias emacs=${emacs}
  fi
}