在 Linux 系統中配置 Oh My Zsh,你需要遵循以下步驟:
安裝 Zsh:
對于基于 Debian 的系統(如 Ubuntu),使用以下命令:
sudo apt-get install zsh
對于基于 RHEL 的系統(如 CentOS、Fedora),使用以下命令:
sudo yum install zsh
安裝 Git:
對于基于 Debian 的系統(如 Ubuntu),使用以下命令:
sudo apt-get install git
對于基于 RHEL 的系統(如 CentOS、Fedora),使用以下命令:
sudo yum install git
克隆 Oh My Zsh 倉庫:
git clone https://github.com/ohmyzsh/ohmyzsh.git ~/.oh-my-zsh
創建并編輯 .zshrc 配置文件:
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
nano ~/.zshrc
在這個文件中,你可以根據自己的喜好修改配置。例如,更改主題、插件等。
將 Zsh 設置為默認 shell:
chsh -s $(which zsh)
注銷并重新登錄,以使更改生效。
現在你已經成功地在 Linux 系統中配置了 Oh My Zsh。你可以開始使用 Zsh 作為你的默認 shell 了。