knoebber / zshrc / 8d550bd vs. 0e15f33

Compare Hashes
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

# Set vi keybindings
bindkey -v

# History
export HISTFILE=~/.zsh_history
export HISTFILESIZE=100000
export HISTSIZE=100000

# https://zsh.sourceforge.io/Doc/Release/Options.html#index-history_002c-ignoring-duplicates
setopt extended_history
setopt hist_find_no_dups
setopt hist_ignore_all_dups
setopt hist_ignore_dups
setopt share_history

# Enable C-R searching (make sure this appears after bindkey -v)
bindkey '^R' history-incremental-search-backward

alias ls='exa'

export EDITOR='vim'