11 lines
287 B
Bash
Executable File
11 lines
287 B
Bash
Executable File
####################################
|
|
# create hashtable for common dirs #
|
|
####################################
|
|
|
|
hash -d dx="$HOME/Documents"
|
|
hash -d dl="$HOME/Downloads"
|
|
hash -d cn="${XDG_CONFIG_HOME:-$HOME/.config}"
|
|
hash -d px="$HOME/Pictures"
|
|
hash -d pr="$HOME/Projects"
|
|
# vim: ft=zsh
|