Skip to content

Commit

Permalink
feat(zsh): improved tmux-sessionizer
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed Apr 15, 2024
1 parent efd4e70 commit b0bfada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/zsh/files/zsh/bin/tmux-sessionizer
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(find ~/ ~/dev ~/dev/github ~/personal -mindepth 1 -maxdepth 1 -type d | fzf)
selected=$(find "$HOME" "$HOME"/dev "$HOME"/dev/github "$HOME"/dev/nvim_plugins "$HOME"/personal -mindepth 1 -maxdepth 1 -type d | fzf)
fi

if [[ -z $selected ]]; then
Expand Down

0 comments on commit b0bfada

Please sign in to comment.