私の中には次のものがあります.zshrc
。
# history
HISTSIZE=50000
SAVEHIST=100000
HISTFILE=~/.cache/zsh/.histfile
# plugins
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
# user configuration
setopt autocd
unsetopt beep
bindkey -v
# preferred editor
export EDITOR='nvim'
# include exports
if [ -f ~/.config/zsh/.exports ]; then
source ~/.config/zsh/.exports
fi
# include aliases
if [ -f ~/.config/zsh/.aliases ]; then
source ~/.config/zsh/.aliases
fi
そしてディレクトリが~/.cache/zsh
存在します。
ただし、履歴は保存されず、以前に入力したことが確実なコマンドを入力し始めると、オートコンプリート機能がないか、グレー表示のコマンドバージョンが表示されません。
私は何を見逃していますか?