iTerm2 美化 配置oh-my-zsh

1.安装Brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.安装iTerm2

brew cask install iterm2

3.安装zsh

brew install zsh

4.安装0h-my-zsh

curl -L https: //raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh

5.切换zsh

chsh -s /bin/zsh

6.安装Powerlevel9k主题

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

7.安装:Meslo LG L DZ Regular Nerd Font Complete (Size: 14pt)

8.安装:Material Design 颜色主题

9. vim ~/.zshrc

export ZSH="$HOME/.oh-my-zsh"

ZSH_THEME="powerlevel9k/powerlevel9k"
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon user dir_writable dir vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time root_indicator background_jobs time disk_usage ram)
#POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
#POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
#POWERLEVEL9K_USER_ICON="\uF415" # 
POWERLEVEL9K_ROOT_ICON="\uF09C"
#POWERLEVEL9K_SUDO_ICON=$'\uF09C' # 
POWERLEVEL9K_TIME_FORMAT="%D{%H:%M}"
#POWERLEVEL9K_VCS_GIT_ICON='\uF408 '
#POWERLEVEL9K_VCS_GIT_GITHUB_ICON='\uF408 '

ZSH_DISABLE_COMPFIX=true

ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"

plugins=(
  git
  iterm2
  macports
  man
  osx
  python
  composer
  zsh-syntax-highlighting
  zsh-autosuggestions
)

source $ZSH/oh-my-zsh.sh

alias suroot='sudo -E -s'

# source ~/.bash_profile

if [ -f ~/.bash_profile ]; then
    . ~/.bash_profile;
fi

 

相关文章:

  • 2022-01-18
  • 2021-06-30
  • 2021-12-22
  • 2021-05-01
  • 2022-03-03
  • 2021-12-08
  • 2021-05-01
  • 2021-09-13
猜你喜欢
  • 2022-01-29
  • 2021-07-26
  • 2021-12-18
  • 2021-11-13
  • 2021-05-19
  • 2021-04-10
  • 2021-06-07
相关资源
相似解决方案