zsh: Create dotfile links under $ZDOTDIR For some reason, zsh expects files under $ZDOTDIR to be dotfiles, unlike many other programs.
Alan Pearce alan@alanpearce.co.uk
Sat, 12 Apr 2014 18:21:50 +0100
1 files changed, 7 insertions(+), 0 deletions(-)
jump to
M hooks/post-up/zsh → hooks/post-up/zsh
@@ -1,6 +1,13 @@ #!/usr/bin/env zsh ZDOTDIR="${XDG_CONFIG_HOME:~/.config}/zsh" +pushd $ZDOTDIR +for f in z*(-.) +do + [[ -e .$f ]] || ln $f .$f +done +popd + if [[ ! -d ~/.cache/zsh ]] then mkdir -p ~/.cache/zsh