安装 zsh

下载

查看所有的 shell

cat /etc/shells

安装 zsh

sudo apt install zsh

把 zsh 设为默认的 shell

chsh -s /bin/zsh

安装 oh my zsh

已经把 github 源替换为了 gitee,并且可以自动的选择软件镜像源,非常的方便!

sh -c "$(wget https://gitee.com/Devkings/oh_my_zsh_install/raw/master/install.sh -O -)"

安装插件

zsh-autosuggestions

git clone https://gitee.com/githubClone/zsh-autosuggestions  ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://gitee.com/ponponon/zsh-syntax-highlighting  ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

常用

插件

alias ll='ls -alF'


plugins=(
git
zsh-autosuggestions
)

主题

ZSH_THEME="gnzh"

最后的效果

图片.png

会五颜六色,会显示当前路径,然后如果你在 git 路径下,还会显示当前分支

扩展文章:
macOS 中 zsh 配置文件及其加载顺序
Files
切换用户后,/etc/profile的配置不起效


universe_king
3.4k 声望678 粉丝