12 lines
298 B
Bash
12 lines
298 B
Bash
# CD to directory when you type it, without having to type cd
|
|
setopt auto_cd
|
|
# Use directory stack
|
|
setopt auto_pushd
|
|
# Always resolve symlinks when changing directory
|
|
setopt chase_links
|
|
|
|
# Ignore duplicate commands and commands starting with space
|
|
setopt hist_ignore_dups
|
|
setopt hist_ignore_space
|
|
|