我刚开始使用ZSH作为shell。我已经安装了oh-my-zsh和抗原作为包管理器。我的默认shell目前是bash。
问题在于:
以下是我的.zshrc
的副本export ZSH=/home/$USER/.oh-my-zsh
ZSH_THEME="powerlevel9k/powerlevel9k"
#PowerLevel9K custom
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_COLOR_SCHEME='light'
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator background_jobs
time)
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
HIST_STAMPS="dd.mm.yyyy"
plugins=(git zsh-autosuggestions)
source $ZSH/oh-my-zsh.sh
source ~/.antigen.zsh
antigen bundle git
antigen bundle zsh-users/zsh-syntax-highlighting
antigen apply
也可能值得一提的是,在尝试自动填充时我也会收到一些错误消息
╰─ vim ......
_arguments:451: _vim_files: function definition file not found
_arguments:451: _vim_files: function definition file not found
非常感谢您解决这些问题的任何帮助。