diff --git a/.config/scripts/functions/fzf b/.config/scripts/functions/fzf index 7b2b84b..39a455b 100644 --- a/.config/scripts/functions/fzf +++ b/.config/scripts/functions/fzf @@ -24,7 +24,7 @@ cfg() # session there with the name of the directory. ts() { - dir=$(find $HOME/.config $HOME/Documents -type d | fzf) + dir=$(find -L $HOME/.config $HOME/Documents -type d | fzf) [ -z "$dir" ] && return tmux new -s $(basename "$dir") -c "$dir" }