主要為了實現命令列顏色高亮與整個命令視窗半透明效果。一般用solarized dark即可。
sudo vim /etc/profile
這時候如果有許可權問題,sudo chmod 644 /etc/profile
在檔案中追加:
find_git_branch
() )"
elif [[ $head != '' ]]; then
git_branch=" → (detached)"
else
git_branch=" → (unknow)"
fireturn
fidir="../$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"
配置立刻生效:
source /etc/profile
這時候顏色應該已經顯示了。
透明度,iterm2中,左上角iterm2->preferences->profiles,右側找到window選項卡,拖動transparency調整.
sh -c "$(curl -fssl "
修改zsh配置檔案
vi ~/.zshrc
zsh_theme=」robbyrussell」修改為zsh_theme=」agnoster」
重啟items
# clone 先轉殖
git clone
# install 後安裝
cd fonts
./install.sh
iterm2中,左上角iterm2->preferences->profiles,右側text選項卡font和non-ascii font都設定為
meslo lg s dz regular for powerline字型。
重啟items
$ cd到.zshrc所在目錄
$ git clone git:
$ 開啟 ~/.zshrc
# 新增下面的語句到.zshrc檔案末尾
source ***/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# 注意:***代表zsh-syntax-highlighting所在目錄
# 再次開啟.zshrc檔案,在最後面新增下面內容
plugins=(zsh-syntax-highlighting)
# 啟用命令糾錯功能
enable_correction="true"
設定iterm出現位置:iterm2->preferences->profiles->window
設定顯現和隱藏熱鍵(option+空格):iterm2->preferences->profiles->window
設定之後,通過option+空格就能切換iterm2的顯示與隱藏。
最終效果:
給Mac下的iTerm2增加配色
iterm2就不說了,mac下非常好用的終端,這裡就先談談如何給其增加配色,效果如下圖 1.先編輯你的profile來新增如下資訊 vim bash profile set clicolor if you want ansi colors in iterm2 export clicolor 1 se...
半透明物體與深度寫入
因為無法控制乙個物體每個片元的渲染順序,所以對於自交叉的半透明物體,如果只用1個pass,關閉深度寫入,因為渲染順序不固定,有可能先渲染前面片元,後渲染後面片元,前面片元混合後面片元的效果變成了後面片元混合前面片元的效果。如果只用1個pass,開啟深度寫入,因為渲染順序不固定,有的地方先渲染前面片元...
Mac下iterm2簡單配置
1.色彩方案配置 git clone git github.com altercation solarized.git 2.修改vim配置 把solarized顏色檔案複製到.vim colors下cdsolarizedcdvim colors solarized colors mkdir p vi...