环境
Ubuntu 20.04 LTS
说明
使用zsh与oh-my-zsh搭建日常命令行环境
步骤
安装 zsh
1 | sudo apt install -y zsh |
配置 zsh 为默认 shell
1 | chsh -s /bin/zsh |
安装 oh-my-zsh
1 | sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
其他
安装时可能会遇到 github 访问过慢的问题,也可以将上述安装文件先保存至本地,手动指定镜像仓库来安装
1 | REMOTE=https://codechina.csdn.net/mirrors/ohmyzsh/ohmyzsh.git ./install.sh |