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.
25 lines
635 B
25 lines
635 B
14 years ago
|
# Path to oh-my-zsh.
|
||
|
export ZSH="$HOME/.oh-my-zsh"
|
||
15 years ago
|
|
||
14 years ago
|
# Set the name of the theme to load (see $ZSH/themes/).
|
||
|
# Setting it to 'random' loads a random theme.
|
||
15 years ago
|
export ZSH_THEME="robbyrussell"
|
||
|
|
||
14 years ago
|
# Set to 'true' to enable case-sensitivity.
|
||
|
export CASE_SENSITIVE='false'
|
||
15 years ago
|
|
||
14 years ago
|
# Set to 'true' to disable color (auto set on dumb terminals).
|
||
|
export DISABLE_COLOR='false'
|
||
15 years ago
|
|
||
14 years ago
|
# Set to 'true' to disable auto setting the tab and window titles.
|
||
|
export DISABLE_AUTO_TITLE='false'
|
||
14 years ago
|
|
||
14 years ago
|
# Set the plugins to load (see $ZSH/plugins/).
|
||
|
# Example: plugins=(rails git textmate ruby lighthouse)
|
||
15 years ago
|
plugins=(git)
|
||
|
|
||
14 years ago
|
source "$ZSH/oh-my-zsh.zsh"
|
||
15 years ago
|
|
||
|
# Customize to your needs...
|
||
14 years ago
|
|