You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
514 B
20 lines
514 B
# Path to your oh-my-zsh configuration. |
|
ZSH=/Users/michaelgerdemann/.oh-my-zsh |
|
|
|
# Set name of the theme to load. |
|
# Look in ~/.oh-my-zsh/themes/ |
|
# Optionally, if you set this to "random", it'll load a random theme each |
|
# time that oh-my-zsh is loaded. |
|
ZSH_THEME="robbyrussell" |
|
|
|
plugins=(git flow sublime) |
|
|
|
source $ZSH/oh-my-zsh.sh |
|
|
|
# User configuration |
|
|
|
# Load ~/.exports, ~/.aliases and ~/.functions |
|
for file in ~/.{extra,bash_prompt,exports,aliases,functions}; do |
|
[ -r "$file" ] && source "$file" |
|
done |
|
unset file |