https://github.com/ohmyzsh/ohmyzsh https://ohmyz.sh/
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # 国内 sh -c "$(curl -fsSL https://ghproxy.com/https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
修改配置文件 ~/.zshrc,设置插件
~/.zshrc
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
注意: 相关的 omz 配置必须在 source $ZSH/oh-my-zsh.sh 前添加。
source $ZSH/oh-my-zsh.sh
这个好诶
这个要点赞
fish 原生提供该能力
非常实用,感谢分享
Popular Ranking
Popular Events
使用 oh-my-zsh 安装终端命令行补全插件提高生产力
https://github.com/ohmyzsh/ohmyzsh
https://ohmyz.sh/
1. 安装
安装插件
通过运行以下命令安装 zsh 命令行补全建议:
通过运行以下命令安装 zsh 语法高亮显示:
修改配置文件
~/.zshrc
,设置插件注意: 相关的 omz 配置必须在
source $ZSH/oh-my-zsh.sh
前添加。