knoebber / zshrc / 9ebed38 vs. ffc0531

Compare Hashes
setopt hist_ignore_all_dups
setopt hist_ignore_dups
setopt share_history
setopt autopushd
setopt pushdignoredups


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

# Aliases
alias ls='exa'
alias hist='history 1' # Show all history
alias d='dirs -v' # Show directory history (relies on autopushd, use pushd +<number> to restore)

export EDITOR='vim'
export PATH="$PATH:/Users/nicolasknoebber/go/bin"