2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Sets Oh My Zsh options.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2011-08-14 21:14:57 -04:00
|
|
|
# Set the key mapping style to 'emacs' or 'vi'.
|
2012-03-28 14:42:34 -04:00
|
|
|
zstyle ':omz:module:editor' keymap 'emacs'
|
2011-12-26 13:37:53 -05:00
|
|
|
|
|
|
|
# Auto convert .... to ../..
|
2012-03-28 14:42:34 -04:00
|
|
|
zstyle ':omz:module:editor' dot-expansion 'no'
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Set case-sensitivity for completion, history lookup, etc.
|
2011-12-26 13:37:53 -05:00
|
|
|
zstyle ':omz:*:*' case-sensitive 'no'
|
2009-10-07 16:01:52 -04:00
|
|
|
|
2011-12-26 13:37:53 -05:00
|
|
|
# Color output (auto set to 'no' on dumb terminals).
|
|
|
|
zstyle ':omz:*:*' color 'yes'
|
2009-09-23 20:12:19 -04:00
|
|
|
|
2011-09-05 15:39:37 -04:00
|
|
|
# Auto set the tab and window titles.
|
2012-03-28 14:44:50 -04:00
|
|
|
zstyle ':omz:module:terminal' auto-title 'yes'
|
2011-08-14 21:14:57 -04:00
|
|
|
|
2012-03-30 15:45:44 -04:00
|
|
|
# Set the Zsh modules to load (man zshmodules).
|
2012-03-28 12:41:39 -04:00
|
|
|
# zstyle ':omz:load' zmodule 'attr' 'stat'
|
2012-03-30 15:45:44 -04:00
|
|
|
|
|
|
|
# Set the Zsh functions to load (man zshcontrib).
|
2012-03-28 12:41:39 -04:00
|
|
|
# zstyle ':omz:load' zfunction 'zargs' 'zmv'
|
2012-03-30 15:45:44 -04:00
|
|
|
|
2012-03-28 12:41:39 -04:00
|
|
|
# Set the Oh My Zsh modules to load (browse modules).
|
2012-05-20 17:54:50 -04:00
|
|
|
# The order matters.
|
|
|
|
zstyle ':omz:load' omodule \
|
|
|
|
'environment' \
|
|
|
|
'terminal' \
|
|
|
|
'editor' \
|
|
|
|
'history' \
|
|
|
|
'directory' \
|
|
|
|
'spectrum' \
|
|
|
|
'alias' \
|
2012-05-20 19:13:13 -04:00
|
|
|
'completion' \
|
2012-05-20 17:54:50 -04:00
|
|
|
'utility' \
|
|
|
|
'prompt'
|
2010-06-03 15:05:12 -04:00
|
|
|
|
2012-01-27 10:14:10 -05:00
|
|
|
# Set the prompt theme to load.
|
2011-07-17 20:15:51 -04:00
|
|
|
# Setting it to 'random' loads a random theme.
|
2011-12-26 13:37:53 -05:00
|
|
|
# Auto set to 'off' on dumb terminals.
|
2012-04-02 19:21:54 -04:00
|
|
|
zstyle ':omz:module:prompt' theme 'sorin'
|
2011-12-26 13:37:53 -05:00
|
|
|
|
|
|
|
# This will make you shout: OH MY ZSHELL!
|
2012-04-02 18:51:00 -04:00
|
|
|
source "$OMZ/init.zsh"
|
2011-07-17 20:15:51 -04:00
|
|
|
|
2009-09-07 12:11:34 -04:00
|
|
|
# Customize to your needs...
|
2011-06-01 02:48:26 -04:00
|
|
|
|