Homebrew - Mac 必備軟件管理神器
基本市面上的軟件都能通過(guò) brew install softwareName
的方式進(jìn)行安裝睛驳。例如: git、google-chrmoe...
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
ITerm2 + oh-my-zsh - 終端命令行工具
當(dāng)然還是通過(guò) brew
進(jìn)行安裝 ITerm2
# ITerm2
$ brew install caskroom/cask/iterm2
都安裝好后,我們就來(lái)配置下終端命令行工具戏仓,讓它變的超酷起來(lái)印蔗。
1. iTerm2 -> Make iTerm2 Default Term
2. 打開(kāi)偏好設(shè)置preference,選中Keys告嘲,勾選Hotkey下的Show/hide iTerm2 with a system-wide hotkey错维,將熱鍵設(shè)置為 ?+. ,這樣你就可以通過(guò) ?+. 全局熱鍵來(lái)打開(kāi)或關(guān)閉iTerm2窗口橄唬,非常方便
3. 配色方案赋焕,選用 solarized,下載解壓仰楚,然后打開(kāi) iTerm2 下的偏好設(shè)置 preference 隆判,點(diǎn)開(kāi) profiles 下的colors 選項(xiàng),點(diǎn)擊右下角的 Color Presets 選項(xiàng)僧界,選擇import 侨嘀,導(dǎo)入解壓到的 solarized 文件下的Solarized Dark.itermcolors
4. 安裝 oh-my-zsh
# oh-my-zsh
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
5. 配置主題
1、 用 vim 編輯隱藏文件 .zshrc捎泻, 終端輸入vi ~/.zshrc
ZSH_THEME="agnoster" 將zsh主題修改為“agnoster”
2飒炎、 應(yīng)用“agnoster”主題需要特殊的字體支持,否則會(huì)出現(xiàn)亂碼情況笆豁,
使用 Meslo 字體郎汪,點(diǎn)開(kāi)鏈接點(diǎn)擊 view raw 下載字體
3、 安裝字體到系統(tǒng)字體冊(cè)
4闯狱、 在iTerm2中應(yīng)用字體 iTerm -> Preferences -> Profiles -> Text -> Change Font)
5煞赢、 重新打開(kāi)iTerm2窗口(或新打開(kāi)一個(gè)iTerm2窗口)即可以看到字體效果
推薦powerlevel9k 主題
$ git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
然后編輯你的~/.zshrc,設(shè)置主題ZSH_THEME="powerlevel9k/powerlevel9k"
6. 自動(dòng)提示與命令補(bǔ)全
1哄孤、克隆倉(cāng)庫(kù)到本地 ~/.oh-my-zsh/custom/plugins 路徑下
$ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
2照筑、用 vim 編輯 .zshrc 文件,找到插件設(shè)置命令瘦陈,默認(rèn)是 plugins=(git) 凝危,我們把它修改為plugins=(zsh-autosuggestions git)
PS:當(dāng)你重新打開(kāi)終端時(shí)可能看不到變化,可能你的字體顏色太淡了晨逝,我們把其改亮一些:
cd ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
- 用
vim
編輯zsh-autosuggestions.zsh
文件蛾默,修改ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=10'
7. 語(yǔ)法高亮效果
$ brew install zsh-syntax-highlighting
在.zshrc
文件的末尾添加下面這一段:
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
然后,加載.zshrc配置
$ source ~/.zshrc
- 這里我使用的是
powerlevel9k 主題
, 所以我的首行提示是這樣修改的, 在.zshrc
文件末尾增加下面一行:
# Powerlevel9k Theme config
POWERLEVEL9K_CONTEXT_TEMPLATE="%n"
或者捉貌,所有主題都適用的方式,還是在.zshrc
文件里進(jìn)行配置:
ZSH_THEME="powerlevel9k/powerlevel9k"
# 隱藏用戶名稱(user@hostname)
DEFAULT_USER=`id -un`
# 含有icon的字型,前提你的字體有icon
POWERLEVEL9K_MODE='nerdfont-complete'
# command line 左邊提示內(nèi)容(文件夾路徑支鸡、文件夾讀寫狀態(tài)冬念、版本控制資訊)
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir dir_writable vcs) # <= left prompt 設(shè)了 "dir"
# command line 右邊提示內(nèi)容(狀態(tài)、時(shí)間)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status time)
最后顯示成果:
Visual Studio Code 終端配置
字體:
- for Source Code Pro: "terminal.integrated.fontFamily": "Source Code Pro for Powerline"
- for Meslo: "terminal.integrated.fontFamily": "Meslo LG M for Powerline"
- the fontsize e.g.: "terminal.integrated.fontSize": 14
NVM - Node Version Manager
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
如果重啟終端后發(fā)現(xiàn)牧挣,nvm
未找到此命令急前, 將下面的源代碼行添加到您的配置文件(?/ .bash_profile
,?/ .zshrc
瀑构,?/ .profile
或?/ .bashrc
)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
安裝Node
# install
$ nvm install 8
# use
$ nvm use default
$ node -v
$ npm -v
NRM -- NPM registry manager
# 全局安裝
$ npm install -g nrm
# 查看當(dāng)前 npm 源列表
$ nom ls
# 選擇 taobao 源
$ nom use taobao
# 查看 npm 源是否更改
$ npm config get