내 안에는 다음이 있습니다 .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
존재합니다.
그러나 기록은 보존되지 않으며 이전에 입력한 것이 확실한 명령을 입력하기 시작하면 자동 완성 기능이 없거나 회색으로 표시된 명령 버전이 표시되지 않습니다.
내가 무엇을 놓치고 있나요?