2011-06-01 02:48:26 -04:00
|
|
|
# Path to oh-my-zsh.
|
2011-07-17 20:15:51 -04:00
|
|
|
OMZ="$HOME/.oh-my-zsh"
|
2009-08-31 07:45:31 -07:00
|
|
|
|
2011-08-14 21:14:57 -04:00
|
|
|
# Set the key mapping style to 'emacs' or 'vi'.
|
|
|
|
KEYMAP='emacs'
|
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Set case-sensitivity for completion, history lookup, etc.
|
2011-07-17 20:15:51 -04:00
|
|
|
CASE_SENSITIVE='false'
|
2009-10-07 20:01:52 +00:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Color output (auto set to 'false' on dumb terminals).
|
|
|
|
COLOR='true'
|
2009-09-23 17:12:19 -07:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Auto set the tab and window titles.
|
|
|
|
AUTO_TITLE='true'
|
2011-03-23 21:20:08 -07:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Auto convert .... to ../..
|
|
|
|
DOT_EXPANSION='false'
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Indicate that completions are being generated.
|
|
|
|
COMPLETION_INDICATOR='false'
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2011-07-15 00:57:11 -04:00
|
|
|
# Set the plugins to load (see $OMZ/plugins/).
|
2011-07-17 20:15:51 -04:00
|
|
|
# Example: plugins=(git lighthouse rails ruby textmate)
|
2010-06-03 12:05:12 -07:00
|
|
|
plugins=(git)
|
|
|
|
|
2011-07-17 20:15:51 -04:00
|
|
|
# This will make you scream: OH MY ZSH!
|
2011-09-11 01:02:10 -04:00
|
|
|
source "$OMZ/init.zsh"
|
2009-09-07 09:11:34 -07:00
|
|
|
|
2011-07-17 20:15:51 -04:00
|
|
|
# Load the prompt theme (type prompt -l to list all themes).
|
|
|
|
# Setting it to 'random' loads a random theme.
|
|
|
|
[[ "$TERM" != 'dumb' ]] && prompt sorin || prompt off
|
|
|
|
|
2009-09-07 09:11:34 -07:00
|
|
|
# Customize to your needs...
|
2011-06-01 02:48:26 -04:00
|
|
|
|