Skip to content

Commit

Permalink
Change hardcoded ~/.oh-my-zsh to $ZSH.
Browse files Browse the repository at this point in the history
  • Loading branch information
s3 committed Jun 12, 2012
1 parent caa1554 commit 1bb7159
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/completion.zsh
Expand Up @@ -46,7 +46,7 @@ zstyle ':completion:*:hosts' hosts $hosts

# Use caching so that commands like apt and dpkg complete are useable
zstyle ':completion::complete:*' use-cache 1
zstyle ':completion::complete:*' cache-path ~/.oh-my-zsh/cache/
zstyle ':completion::complete:*' cache-path $ZSH/cache/

# Don't complete uninteresting users
zstyle ':completion:*:*:*:users' ignored-patterns \
Expand Down
2 changes: 1 addition & 1 deletion plugins/dirpersist/dirpersist.plugin.zsh
Expand Up @@ -12,7 +12,7 @@ dirpersistinstall () {
if grep 'dirpersiststore' ~/.zlogout > /dev/null; then
else
if read -q \?"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "; then
echo "# Store dirs stack\n# See ~/.oh-my-zsh/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout
echo "# Store dirs stack\n# See $ZSH/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout
else
echo "If you don't want this message to appear, remove dirspersist from \$plugins"
fi
Expand Down

0 comments on commit 1bb7159

Please sign in to comment.