1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00
prezto/templates/zshrc.zsh-template

25 lines
634 B
Plaintext
Raw Normal View History

# Path to oh-my-zsh.
export ZSH="$HOME/.oh-my-zsh"
# Set the name of the theme to load (see $ZSH/themes/).
# Setting it to 'random' loads a random theme.
export ZSH_THEME="robbyrussell"
# Set to 'true' to enable case-sensitivity.
export CASE_SENSITIVE='false'
2009-10-07 20:01:52 +00:00
# Set to 'true' to disable color (auto set on dumb terminals).
export DISABLE_COLOR='false'
# Set to 'true' to disable auto setting the tab and window titles.
export DISABLE_AUTO_TITLE='false'
2011-03-24 04:20:08 +00:00
# Set the plugins to load (see $ZSH/plugins/).
# Example: plugins=(rails git textmate ruby lighthouse)
plugins=(git)
source "$ZSH/oh-my-zsh.sh"
# Customize to your needs...