本文主要是介绍ZSH 配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ZSH 配置
- 1. 安装 ZSH
- 2. 安装 oh my zsh
- 3. 安装插件
- 3.1 autojump
- 3.2 zsh-autosuggestions
1. 安装 ZSH
sudo apt-get install zsh
完成安装后需设置当前用户使用 zsh:
chsh -s /bin/zsh
重启后即可使用
2. 安装 oh my zsh
安装 oh my zsh
需先安装 git。
自动安装:
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
3. 安装插件
3.1 autojump
去 GitHub 安装 autojump
的最新版本:
https://github.com/wting/autojump
执行:
./install.sh
根据引导将下面两行加入 ~/.zshrc
中即可:
[[ -s /home/mi/.autojump/etc/profile.d/autojump.sh ]] && source /home/mi/.autojump/etc/profile.d/autojump.sh
autoload -U compinit && compinit -u
3.2 zsh-autosuggestions
用于代码的自动补全,可直接按照 GitHub 官网安装即可:
https://github.com/zsh-users/zsh-autosuggestions/
步骤:
- 将仓库拷贝进
$ZSH_CUSTOM/plugins
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
- 将 autosuggestions 添加进插件内:
- 在
~/.zshrc
内找到 plugins - 添加以下命令:
plugins=( # other plugins...zsh-autosuggestions)
- 重新开一个新终端即可
- 在
这篇关于ZSH 配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!