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

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