allow sourcing zshrc.local config 👈

This commit is contained in:
Justin Garrison 2015-01-05 15:50:46 -08:00
parent d43bcb9720
commit 4c2ceef9d2
4 changed files with 7 additions and 3 deletions

@ -1 +1 @@
Subproject commit 08afea0e230b5a321d584119f55b675990327ef9
Subproject commit 16467a0dfd303ffa11f3e141a0483910c428bef4

@ -1 +1 @@
Subproject commit 9f9fc7d550cc547737f4c686591cbbf07e7470b0
Subproject commit 1e7680405239a835aa403a7457cad23750f98e72

@ -1 +1 @@
Subproject commit 3dc574190071ef59054f6d693132410b37aa3ae4
Subproject commit f289a9f8e7a8a1752cd88f2366e6dacf8a0036e7

View file

@ -11,3 +11,7 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
fi
# Customize to your needs...
# Source custom configuration
if [[ -s "${ZDOTDIR:-$HOME}/zshrc.local" ]]; then
source "${ZDOTDIR:-$HOME}/zshrc.local"
fi