Leif160519的blog Leif160519的blog

——————

目录
Mac 下iterm2配色方案(高亮)及显示分支
/    

Mac 下iterm2配色方案(高亮)及显示分支


本文摘自:https://www.jianshu.com/p/43613289eb6e

配置的效果图
image.png

先讲 iterm2 的配色,再讲 显示分支以及高亮。

一. 配色

  1. 打开iterm的官方主题配置站 :https://github.com/mbadolato/iTerm2-Color-Schemes 将资源下载至本地 , 解压。
  2. 打开 iTerm2 ,按步骤打开

image.png
点击最右边的绿色区域,再点击 “import”,

打开刚下载解压好的文件夹,打开schemes 文件夹,全选那些配色方案,点open,这样就把所有的配色方案导入了。
image.png

  1. 再去点击第二步图中那个绿色区域,就能选择刚刚导入的这些 配色方案了。

二. 显示分支以及高亮

1.命令行执行

> sudo vim /etc/profile

2.添加以下代码

find_git_branch () {

local dir=. head

until [ "$dir" -ef / ]; do

if [ -f "$dir/.git/HEAD" ]; then

head=$(< "$dir/.git/HEAD")

if [[ $head = ref:\ refs/heads/* ]]; then

git_branch=" (${head#*/*/})"

elif [[ $head != '' ]]; then

git_branch=" → (detached)"

else

git_branch=" → (unknow)"

fi

return

fi

dir="../$dir"

done

git_branch=''

}

PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"

black=$'\[\e[1;30m\]'

red=$'\[\e[1;31m\]'

green=$'\[\e[1;32m\]'

yellow=$'\[\e[1;33m\]'

blue=$'\[\e[1;34m\]'

magenta=$'\[\e[1;35m\]'

cyan=$'\[\e[1;36m\]'

white=$'\[\e[1;37m\]'

normal=$'\[\e[m\]'

PS1="$white[$white@$green\h$white:$cyan\W$yellow\$git_branch$white]\$ $normal"

3.执行以下代码

> source /etc/profile

4.此时你应该能看到终端已经显示分支以及有一些高亮颜色,

具体的配色可以去iterm2里去设置.
image.png

你可以去 最右边 “Normal” 那一列自定义各个颜色,

也可以点击右下角 绿色区域 选择已经导入好的配色方案。


“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill

标  题Mac 下iterm2配色方案(高亮)及显示分支
作  者Leif160519
出  处https://github.icu/articles/2019/09/16/1568618192429.html
关于博主:坐标六朝古都南京,服务器运维工程师+桌面运维工程师,如有问题探讨可以直接下方留言。
声援博主:如果您觉得文章对您有帮助,可以评论、订阅、收藏。您的鼓励是博主的最大动力!