.bin
.config
.local
.ncmpcpp
.oh-my-zsh
lib
bzr.zsh
clipboard.zsh
compfix.zsh
completion.zsh
correction.zsh
diagnostics.zsh
directories.zsh
functions.zsh
git.zsh
grep.zsh
history.zsh
key-bindings.zsh
misc.zsh
nvm.zsh
prompt_info_functions.zsh
spectrum.zsh
termsupport.zsh
theme-and-appearance.zsh
plugins
templates
themes
tools
CONTRIBUTING.md
LICENSE.txt
README.md
oh-my-zsh.sh
.themes
.vim
.Xdefaults
.Xresources
.bash_profile
.bashrc
.profile
.vimrc
.xinitrc
.xsessionrc
.zshrc
35 lines
616 B
Bash
35 lines
616 B
Bash
# Changing/making/removing directory
|
|
setopt auto_pushd
|
|
setopt pushd_ignore_dups
|
|
setopt pushdminus
|
|
|
|
alias -g ...='../..'
|
|
alias -g ....='../../..'
|
|
alias -g .....='../../../..'
|
|
alias -g ......='../../../../..'
|
|
|
|
alias -- -='cd -'
|
|
alias 1='cd -'
|
|
alias 2='cd -2'
|
|
alias 3='cd -3'
|
|
alias 4='cd -4'
|
|
alias 5='cd -5'
|
|
alias 6='cd -6'
|
|
alias 7='cd -7'
|
|
alias 8='cd -8'
|
|
alias 9='cd -9'
|
|
|
|
alias md='mkdir -p'
|
|
alias rd=rmdir
|
|
alias d='dirs -v | head -10'
|
|
|
|
# List directory contents
|
|
alias lsa='ls -lah'
|
|
alias l='ls -lah'
|
|
alias ll='ls -lh'
|
|
alias la='ls -lAh'
|
|
|
|
# Push and pop directories on directory stack
|
|
alias pu='pushd'
|
|
alias po='popd'
|