tangled
alpha
login
or
join now
karei.dev
/
unix-config
Configuration files
0
fork
atom
overview
issues
pulls
pipelines
zsh: load local config if exists
karei.dev
5 months ago
7e2b067e
0bee70e1
options
unified
split
Changed files
+6
.zshrc
+6
.zshrc
···
62
62
eval "$(opam env --switch=default)"
63
63
fi
64
64
65
65
+
66
66
+
LOCAL_ZSH_PATH="$HOME/.local.zsh"
67
67
+
if [ -f "$LOCAL_ZSH_PATH" ]; then
68
68
+
source "$LOCAL_ZSH_PATH"
69
69
+
fi
70
70
+
65
71
# git
66
72
alias gs="git status"
67
73
alias gap="git add -p"