Browse Source

Remove need to prepend hashed dirs with ~

master
Arti Zirk 3 years ago
parent
commit
510b7c3d6d
  1. 5
      .zshrc

5
.zshrc

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

Loading…
Cancel
Save