prezto_config/templates/zshrc.zsh

35 lines
836 B
Bash
Raw Normal View History

2011-10-12 05:13:58 +02:00
# Set the path to Oh My Zsh.
OMZ="$HOME/.oh-my-zsh"
# Set the key mapping style to 'emacs' or 'vi'.
KEYMAP='emacs'
# Set case-sensitivity for completion, history lookup, etc.
CASE_SENSITIVE='false'
2009-10-07 22:01:52 +02:00
# Color output (auto set to 'false' on dumb terminals).
COLOR='true'
# Auto set the tab and window titles.
AUTO_TITLE='true'
2011-03-24 05:20:08 +01:00
# Auto convert .... to ../..
DOT_EXPANSION='false'
# Indicate that completions are being generated.
COMPLETION_INDICATOR='false'
# Set the plugins to load (see $OMZ/plugins/).
# Example: plugins=(git lighthouse rails ruby textmate)
plugins=(git)
2011-10-12 05:13:58 +02:00
# This will make you shout: OH MY ZSHELL!
source "$OMZ/init.zsh"
# 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
# Customize to your needs...