fix zsh cfg reading

This commit is contained in:
arcan1s 2015-10-28 13:14:05 +03:00
parent 991fd5beee
commit 7a8b4bb4e2

4
zshrc
View File

@ -103,5 +103,5 @@ for _DIR in $(find "${HOME}/.local/bin" -type d 2> /dev/null); do export PATH="$
# fix urxvt
if [[ ${TERM} =~ "rxvt-unicode-*" ]] export TERM="xterm"
## load custom settings from $HOME/.zsh
for _SCR in $(find "${HOME}/.zsh/" -type 'f' -or -type 'l' 2> /dev/null); do source "${_SCR}"; done
# load custom settings from $HOME/.zsh
for _SCR in $(find "${HOME}/.zsh/" -type 'f' -or -type 'l' -maxdepth 1 2> /dev/null); do source "${_SCR}"; done