ZSH的配置

我馋zsh的主要图的就是自动补全功能,不用重复曾经输入的命令。

“安装-配置-使用” 三部曲

1. 安装

  • 安装zsh
sudo apt-get install zsh
cat /etc/shells  
sudo chsh -s /usr/bin/zsh
chsh -s /usr/bin/zsh #注意:不要使用sudo。
  • 安装oh-my-zsh
# 网络若无故障, 我只要多试两次, 感觉还好
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

国内安装:https://blog.csdn.net/qwe641259875/article/details/107201760

  • 下载安装插件(git, highlighting,autosuggestions,powerlevel10k)
sudo apt-get install git
 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
 git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
  • 下载安装插件autojump
wget https://github.com/downloads/joelthelion/autojump/autojump_v21.1.2.tar.gz
cd autojump_v21.1.2
tar -zxvf autojump_v21.1.2.tar.gz
./install.sh

2.配置

重新给主题和插件赋值

# ~/.zshrc文件
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git  zsh-autosuggestions  zsh-syntax-highlighting )
[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh

完成配置后source使配置生效。

source ~/.zshrc #需个性化配置powerlevel10k的配色

3. 使用

直接打开terminal或者terminator就可以了。仅供自己安装记录,若有不完整,后续补充。

4. 其他说明

如果字体有问题,则将pl10k主题关闭,然后重新启用即可修复。

你可能感兴趣的:(ZSH的配置)