星际跳跃 (@R.G)Ubuntu Shell 实践指南 中发帖

一、Shell 环境配置
安装 Zsh + Oh My Zsh
# 安装 Zsh
sudo apt install zsh

# 安装 Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

必装插件
# zsh-autosuggestions:历史命令实时提示
git clone https://github.com/zsh-users/zsh-autosuggestions \
${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

# zsh-syntax-highlighting:命令实时语法高亮
git clone https://github.co...