This commit is contained in:
Flo 2016-09-02 13:26:04 +02:00
parent b4140c6309
commit cf00529d5f

4
zshrc
View File

@ -1,5 +1,5 @@
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
@ -51,6 +51,7 @@ ZSH_THEME="agnoster"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
#plugins=()
plugins=(git)
# User configuration
@ -91,6 +92,7 @@ bindkey '^R' history-incremental-search-backward
# Don't share history
setopt append_history no_inc_append_history no_share_history
# load local config if exists
if [[ -f $HOME/.zshrc.local ]]; then
source ~/.zshrc.local
fi