read local zsh config if it exists
This commit is contained in:
parent
22b18854c4
commit
76de776416
2 changed files with 5 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,4 +1,5 @@
|
||||||
zsh/zhistory
|
zsh/zhistory
|
||||||
|
zsh/zlocal
|
||||||
zsh/.zcompdump
|
zsh/.zcompdump
|
||||||
emacs.d/auto-save-list/.saves*
|
emacs.d/auto-save-list/.saves*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
||||||
4
zshrc
4
zshrc
|
|
@ -75,6 +75,10 @@ if mac; then
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -r "$ZDOTDIR/zlocal" ]]; then
|
||||||
|
source "$ZDOTDIR/zlocal"
|
||||||
|
fi
|
||||||
|
|
||||||
# 4. Shell Options
|
# 4. Shell Options
|
||||||
# ================
|
# ================
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue