1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- source ~/.zshrc.local
- HISTFILE=~/.histfile
- HISTSIZE=10000
- SAVEHIST=10000
- setopt -o sharehistory
- setopt HIST_IGNORE_DUPS
- setopt HIST_IGNORE_ALL_DUPS
- setopt appendhistory autocd extendedglob nomatch
- bindkey -e
- zstyle :compinstall filename '/home/josh/.zshrc'
- autoload -Uz compinit
- compinit
- WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
- alias l='\ls --color=auto'
- alias ls='ls --color=auto'
- alias lsa='ls -a --color=auto'
- alias lls='ls -lh --color=auto'
- alias ll='ls -lh --color=auto'
- export VISUAL=vim
- bindkey "^[OH" beginning-of-line
- bindkey "^[OF" end-of-line
- bindkey ";5C" forward-word
- bindkey ";5D" backward-word
- alias :q='exit'
- if hash fuck 2>/dev/null; then
- eval $(thefuck --alias)
- fi
- alias ts='date +%y-%m-%d'
- alias emacs='emacs -nw'
|