aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc
blob: 90e920ad572fa32144912c8bea27ea62e022492a (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
HISTSIZE=$((1 << 12))
SAVEHIST=$((1 << 24))
HISTFILE=$HOME/.zsh_history

# Load POSIX shell functions
source "$ENV"