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

2
zshrc
View File

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