[Share Experiences] 安装了zsh,记录一下
Tofloor
poster avatar
没事儿瞎转悠
deepin
2023-07-30 00:31
Author

安装zsh和相关附加件


sudo apt install zsh zsh-antigen zsh-autosuggestions zsh-syntax-highlighting

安装oh-my-zsh

wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
chmod +x install.sh
./install.sh

安装过程中提示切换到zsh,需要输入密码

chsh -s /bin/zsh

主题设置

编辑 nano ~/.zshrc,主题设置如下:

ZSH_THEME="ys"

扩展组件设置

查看zsh-antigen zsh-autosuggestions zsh-syntax-highlighting安装哪些文件在哪个位置,找到同名且扩展名带zsh文件。

dpkg -L zsh-antigen zsh-autosuggestions zsh-syntax-highlighting

找到如下:

/usr/share/zsh-antigen/antigen.zsh
/usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
/usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

添加它们到~/.zhsrc 末尾,并且前面加上source。

nano ~/.zshrc

source /usr/share/zsh-antigen/antigen.zsh
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

Reply Favorite View the author
All Replies
阿尼樱奈奈
Moderator
2023-07-30 01:16
#1

like

Reply View the author
wlly-lzh
deepin
2023-07-30 02:39
#2

这是?一个shell主题?

Reply View the author
落日
deepin
2023-07-30 04:12
#3

巧了,我今天刚干掉zsh和oh-my-zsh,用久了感觉有点花里胡哨

Reply View the author
晚秋(lateautumn)
Moderator
2023-07-30 18:37
#4

这个软件是干什么的confused

Reply View the author
来自Ubuntu的某位用户
deepin
2023-07-30 21:26
#5
晚秋(lateautumn)

这个软件是干什么的confused

zsh是一个好用的command shell,现在archlinux LiveCD或者基于archlinux的Linux发行版默认的command shell就是zsh

Reply View the author
忘记、过去
deepin
2023-07-31 00:03
#6

我一直看的这个 macOS 的 zsh 美化教程,挺方便的
Mac 终端窗口配置 oh-my-zsh - Hello_Monkey猴子喂 - 博客园

Reply View the author