From 0c9a509de9f868491ef49e4c033177f1a9a6bc07 Mon Sep 17 00:00:00 2001 From: Nikolas Weger Date: Fri, 23 Oct 2015 11:54:18 +0200 Subject: [PATCH] added support for local zshrc --- zsh/zshrc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index d24559b..de5d39b 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -14,9 +14,9 @@ export GOPATH=${HOME}/go export PATH="${GOPATH}/bin:${HOME}/.gem/ruby/2.2.0/bin:${HOME}/utils:${HOME}/bin:${PATH}" # Plugins -plugins=(gem bundler composer git pip vagrant docker python extract) -plugins+=(npm systemd systemadmin frontend-search web-search gitignore) -plugins+=(command-not-found colored-man-pages fabric tmux taskwarrior) +plugins=(gem bundler composer git vagrant docker python) +plugins+=(npm systemd systemadmin gitignore tmux extract) +plugins+=(command-not-found colored-man-pages fabric) if [ $(uname -n) = "megumi" -o $(uname -n) = "kimari" -o $(uname -n) = "sayaka" ]; then plugins+=(archlinux) @@ -53,3 +53,6 @@ source ${HOME}/dotfiles/zsh/alias.zsh # Completions Path fpath=(${HOME}/dotfiles/lib/completions/src $fpath) + +# Source local zshrc +[ -f ${HOME}/local.zshrc ] && source ${HOME}/local.zshrc