···6262# see 'man strftime' for details.
6363# HIST_STAMPS="mm/dd/yyyy"
64646565+# initialize autocompletion
6666+autoload -U compinit
6767+compinit
6868+6969+# history setup
7070+setopt SHARE_HISTORY
7171+HISTFILE=$HOME/.zhistory
7272+SAVEHIST=1000
7373+HISTSIZE=999
7474+setopt HIST_EXPIRE_DUPS_FIRST
7575+7676+# history setup
7777+bindkey '\e[A' history-search-backward
7878+bindkey '\e[B' history-search-forward
7979+6580# Would you like to use another custom folder than $ZSH/custom?
6681# ZSH_CUSTOM=/path/to/new-custom-folder
6782···7085# Custom plugins may be added to $ZSH_CUSTOM/plugins/
7186# Example format: plugins=(rails git textmate ruby lighthouse)
7287# Add wisely, as too many plugins slow down shell startup.
7373-plugins=(git)
8888+plugins=(git zsh-autosuggestions)
74897590source $ZSH/oh-my-zsh.sh
7691