From ab9a5d8939e7bf26af6da1b72b5ffc9dfd354ba0 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Tue, 23 Jun 2015 15:53:21 -0400 Subject: Load zshrc.local before plugin initialization. This is to allow zshrc.local to add things to fpath before compinit. --- zshrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'zshrc') diff --git a/zshrc b/zshrc index 41ae7aa..a5570a2 100755 --- a/zshrc +++ b/zshrc @@ -2,6 +2,10 @@ # ulimit -v 4194304 # 4G # ulimit -u 1024 +if [[ -f $HOME/.zshrc.local ]]; then + source $HOME/.zshrc.local +fi + source $HOME/dotfiles/zgen/zgen.zsh # check if there's no init script if ! zgen saved; then @@ -47,10 +51,6 @@ fi alias ff="fileutil --gfs_user=gfp-reporting" alias diff=colordiff -if [[ -f $HOME/.zshrc.local ]]; then - source $HOME/.zshrc.local -fi - export EDITOR=vim export PAGER=less export TZ='America/New_York' -- cgit v1.2.3