prezto/runcoms/zshrc

52 lines
1.2 KiB
Bash
Raw Normal View History

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