Remove need to prepend hashed dirs with ~

This commit is contained in:
Arti Zirk 2021-06-10 12:53:08 +03:00
parent ada9e80fe9
commit 510b7c3d6d
1 changed files with 4 additions and 1 deletions

5
.zshrc
View File

@ -61,8 +61,8 @@ function chpwd_leave_profile_krakul() {
chpwd_profiles
hash -d krakul=~/code/krakul # shorten dir name in prompt
function hash_projects() {
# hash everything under krakul projects
local project_folder
for project_folder in ~/code/krakul/*; do
hash -d "${project_folder:t}"="${project_folder}"
@ -71,6 +71,9 @@ function hash_projects() {
}
hash_projects
# remove need to add ~ in front of hashed dirs
setopt cdable_vars
# Enable or disable python virtual env
function chpwd_auto_python_venv() {
local venv_dir