diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index c1beee1..91c7809 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -104,6 +104,10 @@ alias sl='ls' # I often screw this up. # Mac OS X Everywhere if [[ "$OSTYPE" == darwin* ]]; then alias o='open' +elif [[ "$OSTYPE" == cygwin* ]]; then + alias o='cygstart' + alias pbcopy='tee > /dev/clipboard' + alias pbpaste='cat /dev/clipboard' else alias o='xdg-open'