mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
9 lines
258 B
Bash
Executable file
9 lines
258 B
Bash
Executable file
# Sublime Text 2 Aliases
|
|
#unamestr = 'uname'
|
|
|
|
if [[ $('uname') == 'Linux' ]]; then
|
|
alias st='/usr/bin/sublime_text&'
|
|
elif [[ $('uname') == 'Darwin' ]]; then
|
|
alias st='/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
|
|
fi
|
|
alias stt='st .'
|