2016-06-14 19:13:41 +00:00
|
|
|
|
# Include our shared shell stuff
|
|
|
|
|
source ~/dotfiles/shell/env
|
|
|
|
|
source ~/dotfiles/shell/aliases
|
|
|
|
|
source ~/dotfiles/shell/functions
|
|
|
|
|
|
|
|
|
|
# History Settings
|
|
|
|
|
export HISTIGNORE="&:ls:[bf]g:exit:reset:clear:cd:cd ..:cd.."
|
|
|
|
|
export HISTSIZE=25000
|
|
|
|
|
export HISTFILE=~/.zsh_history
|
|
|
|
|
export SAVEHIST=10000
|
|
|
|
|
setopt INC_APPEND_HISTORY
|
|
|
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
|
|
|
setopt HIST_IGNORE_SPACE
|
|
|
|
|
setopt HIST_REDUCE_BLANKS
|
|
|
|
|
setopt HIST_VERIFY
|
|
|
|
|
|
2017-06-21 18:59:50 +00:00
|
|
|
|
# Say how long a command took, if it took more than 15 seconds
|
|
|
|
|
export REPORTTIME=15
|
2016-06-14 19:13:41 +00:00
|
|
|
|
|
|
|
|
|
# Prompts for confirmation after 'rm *' etc
|
|
|
|
|
# Helps avoid mistakes like 'rm * o' when 'rm *.o' was intended
|
|
|
|
|
setopt RM_STAR_WAIT
|
|
|
|
|
|
|
|
|
|
# Background processes aren't killed on exit of shell
|
|
|
|
|
setopt AUTO_CONTINUE
|
|
|
|
|
|
|
|
|
|
# Don’t write over existing files with >, use >! instead
|
|
|
|
|
setopt NOCLOBBER
|
|
|
|
|
|
|
|
|
|
# Don’t nice background processes
|
|
|
|
|
setopt NO_BG_NICE
|
|
|
|
|
|
|
|
|
|
# Makes Alt-s insert a sudo at beginning of prompt
|
|
|
|
|
function insert_sudo {
|
|
|
|
|
if [[ $BUFFER != "sudo "* ]]; then
|
2017-06-21 18:59:50 +00:00
|
|
|
|
BUFFER="sudo $BUFFER"; CURSOR+=6
|
2016-06-14 19:13:41 +00:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
zle -N insert-sudo insert_sudo
|
|
|
|
|
bindkey "^[s" insert-sudo
|
|
|
|
|
|
2017-06-21 18:59:50 +00:00
|
|
|
|
# Oh-My-ZSH Options below this line
|
|
|
|
|
|
2017-06-22 17:48:10 +00:00
|
|
|
|
# Define Oh-My-ZSH root
|
|
|
|
|
ZSH=$HOME/.oh-my-zsh
|
|
|
|
|
|
2017-06-22 21:48:57 +00:00
|
|
|
|
# Would you like to use another custom folder than $ZSH/custom?
|
|
|
|
|
ZSH_CUSTOM=$HOME/dotfiles/omz
|
|
|
|
|
|
2016-06-14 19:13:41 +00:00
|
|
|
|
# Theme for Oh-My-ZSH
|
2017-06-21 18:59:50 +00:00
|
|
|
|
ZSH_THEME="darkblood"
|
|
|
|
|
|
|
|
|
|
# Uncomment the following line to disable auto-setting terminal title.
|
|
|
|
|
# DISABLE_AUTO_TITLE="true"
|
|
|
|
|
|
|
|
|
|
# Uncomment the following line to enable command auto-correction.
|
|
|
|
|
# ENABLE_CORRECTION="true"
|
|
|
|
|
|
|
|
|
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
|
|
|
|
|
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
|
|
|
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
|
|
|
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
|
|
|
|
# Add wisely, as too many plugins slow down shell startup.
|
2017-06-23 03:10:25 +00:00
|
|
|
|
plugins=(git \
|
|
|
|
|
virtualenvwrapper \
|
|
|
|
|
wp-cli)
|
2017-06-21 18:59:50 +00:00
|
|
|
|
|
|
|
|
|
# Load oh-my-zsh
|
|
|
|
|
source $ZSH/oh-my-zsh.sh
|