23 lines
401 B
Bash
23 lines
401 B
Bash
HISTFILE=~/.histfile
|
|
HISTSIZE=2000
|
|
SAVEHIST=2000
|
|
bindkey -v
|
|
|
|
# End of lines configured by zsh-newuser-install
|
|
# The following lines were added by compinstall
|
|
bindkey "\e[3~" delete-char
|
|
autoload -Uz compinit
|
|
compinit
|
|
# End of lines added by compinstall
|
|
|
|
export EDITOR=nvim
|
|
export TERM='xterm-256color'
|
|
|
|
|
|
alias ls='ls --color=auto'
|
|
|
|
zshaddhistory() {
|
|
whence ${${(z)1}[1]} >/dev/null || return 2
|
|
}
|
|
|