diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-23 11:38:29 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-23 11:38:29 -0700 |
commit | 47ad2424cdf9bd43e49247fe7aa449ddaf438d80 (patch) | |
tree | 37252a199838441503f92f4de3cecbb23503a341 | |
parent | 315099d7785bba4d3a99c8e0636d2fcd18360192 (diff) | |
parent | 6889dfaa46858ddacc82549a57d73118c66a32b6 (diff) | |
download | zsh-47ad2424cdf9bd43e49247fe7aa449ddaf438d80.tar.gz zsh-47ad2424cdf9bd43e49247fe7aa449ddaf438d80.tar.bz2 zsh-47ad2424cdf9bd43e49247fe7aa449ddaf438d80.zip |
Merge pull request #2645 from ncanceill/template-zshrc
Improve template zshrc
-rw-r--r-- | templates/zshrc.zsh-template | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index c25c20e75..7b7f1df85 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -1,4 +1,4 @@ -# Path to your oh-my-zsh configuration. +# Path to your oh-my-zsh installation. export ZSH=$HOME/.oh-my-zsh # Set name of the theme to load. @@ -42,6 +42,9 @@ ZSH_THEME="robbyrussell" # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" # HIST_STAMPS="mm/dd/yyyy" +# Would you like to use another custom folder than $ZSH/custom? +# ZSH_CUSTOM=/path/to/new-custom-folder + # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) @@ -54,6 +57,9 @@ source $ZSH/oh-my-zsh.sh export PATH=$HOME/bin:/usr/local/bin:$PATH # export MANPATH="/usr/local/man:$MANPATH" +# You may need to manually set your language environment +# export LANG=en_US.UTF-8 + # # Preferred editor for local and remote sessions # if [[ -n $SSH_CONNECTION ]]; then # export EDITOR='vim' |