banner
AcoFork

AcoFork

LOVETOLOVE

DeepinのOh My Zshのインストール

  1. ソフトウェアソースを更新し、zsh と基本的な依存関係をインストールします
# ソフトウェアソースを更新する
sudo apt update && sudo apt upgrade -y
# zsh、git、curl、wgetをインストールする
sudo apt install zsh git curl wget -y
  1. デフォルトのターミナルを zsh に設定する(Deepin ターミナルを使用している場合は手動で設定する必要があります)
chsh -s /bin/zsh

image

  1. 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)"
  1. haoomz テーマをインストールする
sudo wget -O $ZSH_CUSTOM/themes/haoomz.zsh-theme https://cdn.haoyep.com/gh/leegical/Blog_img/zsh/haoomz.zsh-theme
  1. haoomz テーマを有効にする
nano ~/.zshrc
## テーマを変更する
ZSH_THEME="haoomz"

source ~/.zshrc

image

  1. zsh-autosuggestions コマンド予測プラグインをインストールする
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  1. zsh-syntax-highlighting コマンド構文強調プラグインをインストールする
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  1. 設定ファイルを変更してプラグインを有効にする
nano ~/.zshrc

plugins=(
  git
  zsh-autosuggestions
  zsh-syntax-highlighting
)

source ~/.zshrc

image

  1. 作業完了

image

image

image

image

読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。