MacOS m 1開発優先パラメータ


Homebrew


Macパッケージマネージャ.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> ~/.zprofile
. ~/.zprofile

iTerm2


Mac仮想端末アプリケーション.
brew install iterm2

oh-my-zsh


これはZSHで最も広く使われているプラグインフレームワークです.
組み込みプラグインとトピックも用意されています.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
#명령어와 미리보기등을 구분하기 쉽게 하이라이팅 해주는 플러그인 설치
brew install zsh-syntax-highlighting
echo "source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc
. ~/.zshrc
#history 기반으로 최근에 입력한 명령어를 미리보기 형태로 보여주는 플러그인 설치
brew install zsh-autosuggestions
echo "source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc
. ~/.zshrc

zshrc設定

vi ~/.zshrc
共通トピックに変更
ZSH_THEME="agnoster"
ユーザー名をAに表示しない場合は、
prompt_context() {
  if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
    prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
  fi
}

d2codingfont


d2codingfont
これは,正確なゴシック式に分けた上で,開発者の符号化のために可読性と類似文字との判別力だけでなく,設計上ハングルとの協調性を考慮して最適化されたフォントである.
zipファイルの解凍、D 2 codingAll->ttcファイルのインストール

リファレンスサイト


vimエディタ/例の使用
oh-my-zshきれいに着飾って
iTerm 2設定