12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 la='ls -a --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'
- if [ ! $ZSH_CUSTOM ]
- then
- source .zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
- fi
|