feat(tmux): add zoxide support to tmux start project script

This commit is contained in:
thek4n 2026-07-21 23:24:13 +03:00
parent 5841c24fb9
commit ce52f21a7a

View File

@ -25,6 +25,11 @@ if [ ! -d "${project_dir}" ]; then
exit 1
fi
{
if command -v zoxide 1>/dev/null 2>&1; then
zoxide add "${project_dir}"
fi
} &
session="$(basename "${project_dir}" | sed 's/\./_/g')"