32 lines
846 B
Bash
32 lines
846 B
Bash
|
# Path to your oh-my-zsh configuration.
|
||
|
ZSH=$HOME/.oh-my-zsh
|
||
|
|
||
|
# Customize to your needs...
|
||
|
for file in ~/.{path,bash_prompt,exports,shared_exports,aliases,functions,extra}; do
|
||
|
[ -r "$file" ] && source "$file"
|
||
|
done
|
||
|
|
||
|
# 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="fino"
|
||
|
|
||
|
# Example aliases
|
||
|
# alias zshconfig="mate ~/.zshrc"
|
||
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||
|
|
||
|
# Set to this to use case-sensitive completion
|
||
|
# CASE_SENSITIVE="true"
|
||
|
|
||
|
# Comment this out to disable bi-weekly auto-update checks
|
||
|
# DISABLE_AUTO_UPDATE="true"
|
||
|
|
||
|
# Uncomment to change how many often would you like to wait before auto-updates occur? (in days)
|
||
|
# export UPDATE_ZSH_DAYS=13
|
||
|
|
||
|
plugins=(git github heroku)
|
||
|
|
||
|
source $ZSH/oh-my-zsh.sh
|
||
|
|
||
|
unset file
|