手动安装插件
sh
复制代码
# 创建插件目录(如不存在)
mkdir -p ~/.oh-my-zsh/custom/plugins
# 安装 zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
# 安装 zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
# 安装 zsh-completions
git clone https://github.com/zsh-users/zsh-completions ~/.oh-my-zsh/custom/plugins/zsh-completions
修改 .zshrc
插件设置
sh
复制代码
vim ~/.zshrc
sh
复制代码
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="agnoster" # 主题可换成 robbyrussell、powerlevel10k 等
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
zsh-completions
)
source $ZSH/oh-my-zsh.sh
# 插件路径(根据 brew 路径修改)
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# 历史命令记录设置
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
# 配色支持
export TERM="xterm-256color"
# 美化 ls
alias ls='ls -G'
# 显示隐藏文件
alias lsa='ls -la'
# 清屏快捷
alias cls='clear'
sh
复制代码
# 保存刷新
source ~/.zshrc