ubuntu18.04 安装 美化 zsh

ubuntu18.04 安装 zsh 美化终端

安装zsh
安装oh-my-zsh

1、安装zsh

sudo apt-get install zsh

2、把默认的Shell改成zsh

chsh -s /bin/zsh

注意:不要使用sudo。

3、配置密码文件,解决chsh: PAM认证失败的问题

sudo vim /etc/passwd

把第一行的/bin/bash改成/bin/zsh,这个是root用户的。

4、安装Git

sudo apt-get install git

5、安装oh-my-zsh

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

6、安装autojump自动跳转插件

官网:https://github.com/wting/autojump
https://www.linuxidc.com/Linux/2015-08/121421.htm 这个还是教的不错

sudo apt-get install autojump

配置教程:cat /usr/share/doc/autojump/README.Debian
配置:

vim .zshrc
# 在最后一行加入,注意点后面是一个空格
. /usr/share/autojump/autojump.sh
source ~/.zshrc # 生效

8、安装zsh-syntax-highlighting语法高亮插件

官网:https://github.com/zsh-users/zsh-syntax-highlighting

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
source ~/.zshrc

9、安装zsh-autosuggestions语法历史记录插件

官网:https://github.com/zsh-users/zsh-autosuggestions

git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

配置:

vim ~/.zshrc
#搜索 plugins=
# 在括号中加上 zsh-autosuggestions
# 在plugins 下加上 
setopt no_nomatch  # 如果不加的话就不能使用*
# 在最后一行 添加
source $ZSH_CUSTOM/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh

source ~/.zshrc

配置主题:

官网 :https://github.com/robbyrussell/oh-my-zsh/wiki/Themes

sudo vim ~/.zshrc
# 找到ZSH_THEME="robbyrussell",修改为:ZSH_THEME="avit";
source ~/.zshrc
如果发生了乱码 则修改以下终端的文字

你可能感兴趣的:(工具使用)