Ubuntu20.04配置oh-my-zsh以及一些好用的插件
程序员文章站
2022-07-05 18:35:13
...
如何查看当前SHELL
echo $SHELL
如何查看系统安装的SHELL
cat /etc/shells
进入正题
安装zsh
sudo输入的密码是你的root密码,如果你还没有设置过root密码,就是你当前用户的密码
sudo apt-get update
sudo apt-get install zsh
安装完毕
把默认SHELL改为zsh
chsh -s /bin/zsh
安装其他的一些东西
sudo apt install curl
sudo apt install git
sudo apt install vim
over
安装oh-my-zsh
sh -c "$(curl -fsSL https://gitee.com/shmhlsy/oh-my-zsh-install.sh/raw/master/install.sh)"
安装完毕
安装自动补齐插件
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh}/plugins/zsh-autosuggestions
安装语法高亮插件
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh}/plugins/zsh-syntax-highlighting
安装autojump自动跳转插件
sudo apt-get install autojump
为以上三者插件的安装进行配置
vim ~/.zshrc
vim 的使用自行搜索(按i是插入模式,按esc之后输入:wq)是保存并退出的意思
ZSH_THEME这一行改为(改主题,个人觉得这个主题好看,好用)
ZSH_THEME="ys"
plugins这一行改为(使前两个插件生效)
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
最后一行加上 (使自动跳转插件生效)
. /usr/share/autojump/autojump.sh
使配置生效
source ~/.zshrc
重启
reboot