aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc
blob: 014ac3fdef543aafe91aff77a238c04e93780c64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Emacs keybindings even if EDITOR is vi(1)
bindkey -e

# History settings
setopt histignorealldups sharehistory
HISTFILE=$HOME/.zsh_history
SAVEHIST=$((1 << 12))
HISTSIZE=$((1 << 10))

# Load POSIX shell functions
source "$ENV"