dotwryn/zsh/rc.d/02.config-zsh.zsh

31 lines
890 B
Bash
Raw Normal View History

#####################################################################
2020-11-10 23:14:06 +00:00
2024-08-16 15:41:26 +00:00
HISTFILE="${XDG_STATE_HOME}/zsh/history"
HISTSIZE=10000
SAVEHIST=10000
2020-11-04 19:57:36 +00:00
2022-04-04 17:05:27 +00:00
setopt appendhistory autocd beep notify HIST_IGNORE_SPACE
2020-11-04 19:57:36 +00:00
unsetopt nomatch
bindkey -v
2021-09-16 21:09:36 +00:00
bindkey '^R' history-incremental-search-backward
# ESC,v to use $EDITOR to modify the current command
2021-09-16 21:09:36 +00:00
autoload edit-command-line
zle -N edit-command-line
bindkey -M vicmd v edit-command-line
2021-09-16 21:09:36 +00:00
# zsh auto/tab-completion engine
zmodload -i zsh/complist
autoload -Uz compinit
2024-08-16 15:41:26 +00:00
compinit -d "${XDG_CACHE_HOME}/zsh/zcompdump-${ZSH_VERSION}"
2020-11-04 19:57:36 +00:00
zstyle ':completion:*' completer _complete _ignored _approximate
zstyle ':completion:*' max-errors 1
zstyle ':completion:*' menu select
2024-08-16 15:41:26 +00:00
zstyle ':completion:*' cache-path "${XDG_CACHE_HOME}/zsh/zcompcache"
bindkey -M menuselect '^M' .accept-line
2020-11-04 19:57:36 +00:00
#####################################################################
return 0