Files
i3-dot/.zshrc
nnduc 324a833c81 zsh
2026-02-21 02:30:10 +07:00

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
}