diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-06-16 21:14:51 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-08-23 09:42:32 +0200 |
commit | 9e81b79d90606bc0afb6ce17867ff4d42df3ab37 (patch) | |
tree | f67d6f232fd8e72f93529b05af1cd3efecebf008 /templates | |
parent | 136a83433ad5214eb3d5a0ca3c799be8fc9cb1aa (diff) | |
download | zsh-9e81b79d90606bc0afb6ce17867ff4d42df3ab37.tar.gz zsh-9e81b79d90606bc0afb6ce17867ff4d42df3ab37.tar.bz2 zsh-9e81b79d90606bc0afb6ce17867ff4d42df3ab37.zip |
Reorder zshrc template
Diffstat (limited to 'templates')
-rw-r--r-- | templates/zshrc.zsh-template | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 632490132..00d25bc93 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -1,10 +1,12 @@ +# If you come from bash you might have to change your $PATH. +# export PATH=$HOME/bin:/usr/local/bin:$PATH + # Path to your oh-my-zsh installation. export 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. +# Set name of the theme to load. Optionally, if you set this to "random" +# it'll load a random theme each time that oh-my-zsh is loaded. +# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes ZSH_THEME="robbyrussell" # Uncomment the following line to use case-sensitive completion. @@ -51,13 +53,12 @@ ZSH_THEME="robbyrussell" # Add wisely, as too many plugins slow down shell startup. plugins=(git) +source $ZSH/oh-my-zsh.sh + # User configuration -# export PATH="/usr/bin:/bin:/usr/sbin:/sbin:$PATH" # export MANPATH="/usr/local/man:$MANPATH" -source $ZSH/oh-my-zsh.sh - # You may need to manually set your language environment # export LANG=en_US.UTF-8 |