Skip to content

Commit

Permalink
zsh: change location of local files
Browse files Browse the repository at this point in the history
  • Loading branch information
majutsushi committed Mar 24, 2013
1 parent a19e03f commit 77af190
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions zsh/zsh/zshenv.d/90_misc
@@ -1,8 +1,8 @@
# make sure the value of SHELL is an absolute path
export SHELL=$(which zsh)

if [[ -f $HOME/.zshenv.local ]]; then
source $HOME/.zshenv.local
if [[ -f $HOME/.local/etc/zshenv ]]; then
source $HOME/.local/etc/zshenv
fi

# vim: filetype=zsh
4 changes: 2 additions & 2 deletions zsh/zsh/zshrc.d/98_misc
Expand Up @@ -9,8 +9,8 @@ _dir_cycle() {
}
add-zsh-hook precmd _dir_cycle

if [[ -f $HOME/.zshrc.local ]]; then
source $HOME/.zshrc.local
if [[ -f $HOME/.local/etc/zshrc ]]; then
source $HOME/.local/etc/zshrc
fi

# vim: filetype=zsh

0 comments on commit 77af190

Please sign in to comment.