-
Notifications
You must be signed in to change notification settings - Fork 1
/
zshrc
35 lines (28 loc) · 909 Bytes
/
zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# The following lines were added by compinstall
zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]} m:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**' 'l:|=* r:|=*'
zstyle :compinstall filename '/Users/mterwilliger/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.zsh_history
HISTSIZE=10000000
SAVEHIST=10000000
setopt INC_APPEND_HISTORY
setopt SHARE_HISTORY
setopt HIST_SAVE_NO_DUPS
setopt AUTO_PUSHD
setopt AUTO_CD
bindkey -e
# End of lines configured by zsh-newuser-install
autoload -Uz promptinit
promptinit
prompt redhat
export EDITOR=vim
export TERM="screen-256color"
bindkey "^[[3~" delete-char
if [[ $ITERM_PROFILE == "Light" ]]; then
export LIGHT_COLORS=1
fi
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh