]> git.r.bdr.sh - rbdr/dotfiles/blame - zsh/modules/directory.zsh
Update yum to dnf
[rbdr/dotfiles] / zsh / modules / directory.zsh
CommitLineData
fa250235
BB
1#
2# Sets directory options and defines directory aliases.
3#
4# Authors:
5# James Cox <james@imaj.es>
6# Sorin Ionescu <sorin.ionescu@gmail.com>
7#
8
9#
10# Options
11#
12
13setopt AUTO_CD # Auto changes to a directory without typing cd.
14setopt AUTO_PUSHD # Push the old directory onto the stack on cd.
15setopt PUSHD_IGNORE_DUPS # Do not store duplicates in the stack.
16setopt PUSHD_SILENT # Do not print the directory stack after pushd or popd.
17setopt PUSHD_TO_HOME # Push to home directory when no argument is given.
18setopt CDABLE_VARS # Change directory to a path stored in a variable.
19setopt AUTO_NAME_DIRS # Auto add variable-stored paths to ~ list.
20setopt MULTIOS # Write to multiple descriptors.
21setopt EXTENDED_GLOB # Use extended globbing syntax.
22unsetopt CLOBBER # Do not overwrite existing files with > and >>.
23 # Use >! and >>! to bypass.