diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-02-21 08:59:14 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-02-21 08:59:14 +0100 |
| commit | c3de6b2bd1fdf34b659ec16622045cab560a268e (patch) | |
| tree | 7ac921cdf0b821794fb766bdfc33a21b3a9c660c /runcoms | |
| parent | ec48932ff896ba580d9d9039d990a7cbd05eb549 (diff) | |
Load a local config for local overrides
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 189c40d..2cd5ce2 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -61,4 +61,10 @@ if [[ -s "${ZDOTDIR:-$HOME}/.secrets.zsh" ]]; then source "${ZDOTDIR:-$HOME}/.secrets.zsh" fi +# Load a local config + +if [[ -s "${ZDOTDIR:-$HOME}/.zshrc.local" ]]; then + source "${ZDOTDIR:-$HOME}/.zshrc.local" +fi + eval $(/usr/libexec/path_helper -s) |