iterm2的配置分爲以下幾個部分:linux
1. 字體大小的配置:shell
iTerm->Preferences->Profiles->Text->Regular Font: 我在這裏設置成24pt。vim
2. 配色:bash
1)修改~/.bash_profile以下所示:less
#enables colorin the terminal bash shell export export CLICOLOR=1 #sets up thecolor scheme for list export export LSCOLORS=gxfxcxdxbxegedabagacad #sets up theprompt color (currently a green similar to linux terminal) export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ ' #enables colorfor iTerm export TERM=xterm-256color
執行source ~/.bash_profile生效。注意這裏只是修改文件、文件夾等的顯示顏色及$符號以前內容的顏色。編輯器
2)修改背景前景色,即選擇一種配色方案,執行方法以下:字體
在Preferences->Profiles->Colors的load presets能夠選擇某個配色方案。也能夠本身下載.spa
下載連接爲:http://iterm2colorschemes.com/,下載zip包解壓後,在schemes目錄下是一些後綴爲.itemcolors的文件,如何導入在連接的Installation Instructions裏面有。
.net
3. 執行以上操做時,使用vim編輯代碼的顏色仍是單純的白色,這是由於vim編輯器的顏色和前面的配色方案是獨立的,具體能夠以下操做:code
執行vim ~/.vimrc,在.vimrc文件中添加以下內容:
syntax on
set number
set ruler
執行source ~/.vimrc操做.
效果圖以下所示:
參考連接: