Updated templates to reflect how themeing is set at the moment. Not quite happy with it yet.

This commit is contained in:
Simon Gomizelj 2011-11-28 09:27:22 -05:00
commit 9e17fe1fc1
2 changed files with 15 additions and 15 deletions

View file

@ -1,11 +1,9 @@
# Path to your oh-my-zsh configuration. # Path to your oh-my-zsh configuration.
ZSH=/usr/share/oh-my-zsh/ ZSH=/usr/share/oh-my-zsh/
# Set name of the theme to load. load_oh_my_zshell(){
# Look in /usr/local/share/oh-my-zsh/themes/ source $ZSH/oh-my-zsh.sh
# Optionally, if you set this to "random", it'll load a random theme each }
# time that oh-my-zsh is loaded.
ZSH_THEME="arch-blue"
# Set to this to use case-sensitive completion # Set to this to use case-sensitive completion
# CASE_SENSITIVE="true" # CASE_SENSITIVE="true"
@ -24,10 +22,13 @@ DISABLE_AUTO_UPDATE="true"
# Which plugins would you like to load? (plugins can be found in /usr/local/share/oh-my-zsh/plugins/*) # Which plugins would you like to load? (plugins can be found in /usr/local/share/oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git) plugins=(archlinux sprung git)
load_oh_my_zshell(){ load_oh_my_zshell
source $ZSH/oh-my-zsh.sh
} # Load a theme
# Look in /usr/local/share/oh-my-zsh/themes/
set_theme "arch-blue"
# random_theme
# Customize to your needs... # Customize to your needs...

View file

@ -1,12 +1,6 @@
# Path to your oh-my-zsh configuration. # Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
# Set to this to use case-sensitive completion # Set to this to use case-sensitive completion
# CASE_SENSITIVE="true" # CASE_SENSITIVE="true"
@ -28,4 +22,9 @@ plugins=(git)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
# Load a theme
# Look in $ZSH/themes/
set_theme "robbyrussell"
# random_theme
# Customize to your needs... # Customize to your needs...