2011-06-01 06:48:26 +00:00
|
|
|
# Path to oh-my-zsh.
|
2011-07-18 00:15:51 +00:00
|
|
|
OMZ="$HOME/.oh-my-zsh"
|
2009-08-31 14:45:31 +00:00
|
|
|
|
2011-08-15 01:14:57 +00:00
|
|
|
# Set the key mapping style to 'emacs' or 'vi'.
|
|
|
|
KEYMAP='emacs'
|
|
|
|
|
2011-09-05 19:39:37 +00:00
|
|
|
# Set case-sensitivity for completion, history lookup, etc.
|
2011-07-18 00:15:51 +00:00
|
|
|
CASE_SENSITIVE='false'
|
2009-10-07 20:01:52 +00:00
|
|
|
|
2011-09-05 19:39:37 +00:00
|
|
|
# Color output (auto set to 'false' on dumb terminals).
|
|
|
|
COLOR='true'
|
2009-09-24 00:12:19 +00:00
|
|
|
|
2011-09-05 19:39:37 +00:00
|
|
|
# Auto set the tab and window titles.
|
|
|
|
AUTO_TITLE='true'
|
2011-03-24 04:20:08 +00:00
|
|
|
|
2011-09-05 19:39:37 +00:00
|
|
|
# Auto convert .... to ../..
|
|
|
|
DOT_EXPANSION='false'
|
2011-08-15 01:14:57 +00:00
|
|
|
|
2011-09-05 19:39:37 +00:00
|
|
|
# Indicate that completions are being generated.
|
|
|
|
COMPLETION_INDICATOR='false'
|
2011-08-15 01:14:57 +00:00
|
|
|
|
2011-07-15 04:57:11 +00:00
|
|
|
# Set the plugins to load (see $OMZ/plugins/).
|
2011-07-18 00:15:51 +00:00
|
|
|
# Example: plugins=(git lighthouse rails ruby textmate)
|
2010-06-03 19:05:12 +00:00
|
|
|
plugins=(git)
|
|
|
|
|
2011-07-18 00:15:51 +00:00
|
|
|
# This will make you scream: OH MY ZSH!
|
2011-07-15 04:57:11 +00:00
|
|
|
source "$OMZ/oh-my-zsh.zsh"
|
2009-09-07 16:11:34 +00:00
|
|
|
|
2011-07-18 00:15:51 +00: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 16:11:34 +00:00
|
|
|
# Customize to your needs...
|
2011-06-01 06:48:26 +00:00
|
|
|
|