- ソフトウェアソースを更新し、zsh と基本的な依存関係をインストールします
# ソフトウェアソースを更新する
sudo apt update && sudo apt upgrade -y
# zsh、git、curl、wgetをインストールする
sudo apt install zsh git curl wget -y
- デフォルトのターミナルを zsh に設定する(Deepin ターミナルを使用している場合は手動で設定する必要があります)
chsh -s /bin/zsh
- Oh My Zsh をインストールする
# 公式ソース
sh -c "$(wget -O- https://install.ohmyz.sh/)"
# 国内ミラー
sh -c "$(wget -O- https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
- haoomz テーマをインストールする
sudo wget -O $ZSH_CUSTOM/themes/haoomz.zsh-theme https://cdn.haoyep.com/gh/leegical/Blog_img/zsh/haoomz.zsh-theme
- haoomz テーマを有効にする
nano ~/.zshrc
## テーマを変更する
ZSH_THEME="haoomz"
source ~/.zshrc
- 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.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
- 設定ファイルを変更してプラグインを有効にする
nano ~/.zshrc
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
)
source ~/.zshrc
- 作業完了