summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xzshrc8
1 files changed, 4 insertions, 4 deletions
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'