From 449b76df9e911ad2398d12aac61ab2e8c50f5173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Sch=C3=A4ferdiek?= Date: Fri, 6 Sep 2019 16:40:48 +0200 Subject: [PATCH] Add zdirs to default zshrc --- etc/skel/.zshrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 0cb0415..cb17a69 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -108,6 +108,24 @@ if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then zle -N zle-line-finish fi +# DIRSTACK +DIRSTACKSIZE=${DIRSTACKSIZE:-20} +dirstack_file=${dirstack_file:-${HOME}/.zdirs} + +if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then + dirstack=( ${(f)"$(< $dirstack_file)"} ) + # "cd -" won't work after login by just setting $OLDPWD, so + [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD +fi + +chpwd_functions+=(chpwd_dirpersist) +chpwd_dirpersist() { + if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi + local -ax my_stack + my_stack=( ${PWD} ${dirstack} ) + builtin print -l ${(u)my_stack} >! ${dirstack_file} +} + # HIGHLIGHTING ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern) source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh