9 lines
228 B
Bash
9 lines
228 B
Bash
# CD to directory when you type it, without having to type cd
|
|
setopt auto_cd
|
|
# Use directory stack
|
|
setopt auto_pushd
|
|
|
|
# Ignore duplicate commands and commands starting with space
|
|
setopt hist_ignore_dups
|
|
setopt hist_ignore_space
|