ETH官方钱包

創(chuàng)作內(nèi)容

2 GP

【macOS】現(xiàn)代終端機(jī)都這麼潮嗎?Iterm2、zshell、oh-my-zsh、powerlevel9k

作者:GJLMoTea│2020-07-07 23:52:49│巴幣:4│人氣:6495



完成品↓↓↓↓↓↓↓↓



你還是我所認(rèn)識的終端機(jī)嗎...


這可不是只有畫面變 Colorful 了,
git 分支都能幫你顯示、甚至貓咪都出動(dòng)了,
tab 鍵的效果也有進(jìn)一步的功能,擁有更棒的寫程式體驗(yàn)。



要變得這麼潮之前,要先安裝幾個(gè)東西,
雖然有點(diǎn)多、但別急,一步一步來。




用Homebrew 安裝 Iterm2

Iterm2 是具有像tmux指令那樣視窗分割、功能強(qiáng)大的 仿真Terminal,
當(dāng)然執(zhí)行速度上會比mac內(nèi)建的 Terminal 稍慢一點(diǎn),但在使用上便利性十足。
iTerm2 is an open source replacement for Apple's Terminal.
It's highly customizable and comes with a lot of useful features.
$ brew tap homebrew/cask

$ brew cask install iterm2



從此 Iterm 就能取代 mac 終端機(jī)了。









安裝 Powerline font字型


Powerline是用python開發(fā)出的 vim命令列與shell的外掛

Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications, including zsh, bash, fish, tmux, IPython, Awesome, i3 and Qtile.

用Homebrew追蹤遠(yuǎn)端cask-fonts
$ brew tap homebrew/cask-fonts
要先安裝svn才能安裝字體
$ brew install svn
搜尋有哪些powerline、nerd字體。
因?yàn)?nerd 收錄(patched)的特殊字元比powerline還要多,
所以若之後遇到Powerline無法顯示的亂碼時(shí),可以轉(zhuǎn)成nerd試試

$ brew search powerline
$ brew search nerd

在這裡我們挑一個(gè)powerline的字體安裝
$ brew cask install font-source-code-pro-for-powerline

在這裡我們挑一個(gè)nerd的字體安裝
$ brew cask install font-sauce-code-pro-nerd-font

字體安裝完後先按command+Q退出 Iterm,再重新打開 Iterm


點(diǎn)選 Preference -> Profiles -> Text -> 選擇Font,就能更改字型啦~














安裝zshell

因?yàn)?macOS 2018 Mojave內(nèi)建有zsh,可以不用做以下數(shù)行指令

$ brew install zsh
$ which zsh
/usr/local/bin/zsh
$ sudo sh -c "echo $(which zsh) >> /etc/shells"
$ chsh -s $(which zsh)

只要確認(rèn)zsh存在於/etc/shells下,change shell就行了

$ cat /etc/shells
$ chsh -s /bin/zsh

退出shell重開,原本的$字號變成%符號,印出來看看
% echo $0
% echo $SHELL


此時(shí)在 Terminal中,按tab按鍵會有"遍歷檔案名稱"的效果








安裝 oh-my-zsh

% sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

原本%符號變成 → ~
→ ~ 表示路徑在HOME目錄下
→ / 表示在根目錄下
在其他目錄
此時(shí)可以看到 家目錄底下多了一個(gè) ~/.oh-my-zsh 的資料夾


歐歐
安裝完後遇到問題,跳出一大串提示(沒問題的跳過這一段)
[oh-my-zsh] For safety, we will not load completions from these directories until
[oh-my-zsh] you fix their permissions and ownership and restart zsh.
[oh-my-zsh] See the above list for directories with group or other writability.
...
[oh-my-zsh] If the above didn't help or you want to skip the verification of
[oh-my-zsh] insecure directories you can set the variable ZSH_DISABLE_COMPFIX to
[oh-my-zsh] "true" before oh-my-zsh is sourced in your zshrc file.

因?yàn)榘踩膯栴},
要禁用上述所列出來的檔案及資料夾的 group、others 的文件修改權(quán)限 (以確保只有root跟文件擁有者可以修改文件),或者直接禁用安全檢查。
換言之就是把提示列出的所有文件權(quán)限改成755 ($ chmod 755 ...),但因?yàn)楸容^麻煩,所以在這裡直接禁用檢查功能。


在.zshrc檔的第一行添加 ZSH_DISABLE_COMPFIX=true
→ ~ vim ~/.zshrc


再重新載入
→ ~ source ~/.zshrc


此時(shí)按tab按鍵會有"遍歷檔案名稱+選取顏色及反白"的效果

到這個(gè)步驟,若沒有安裝powerline外掛 都還不會有文字亂碼,
因?yàn)檫€沒有要顯示特殊字元








安裝 powerlevel9k 主題

powerlevel9k 是ZSH上很酷炫的主題,
可以在命令列顯示時(shí)間、電力、CPU memory使用率、其他電腦的資訊等等。
Powerlevel9k is a theme for ZSH which uses Powerline Fonts. It can be used with vanilla ZSH or ZSH frameworks such as Oh-My-Zsh, Prezto, Antigen, and many others.
下載 powerlevel9k
→ ~ git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k

載下來後,
若要切換主題顏色,則修改.zshrc 裡面的ZSH_THEME參數(shù)
→ ~ vim ~/.zshrc
預(yù)設(shè)為 ZSH_THEME="robbyrussell"
可改成 ZSH_THEME="agnoster"
或可改成 random、yssimple、bira 來玩看看
所有的主題配色可以在這裡找到 https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

重新載入、立即套用
→ ~ exec $SHELL




還有一大堆參數(shù)設(shè)定可調(diào)整,例如左側(cè)、右側(cè)出現(xiàn)的提示等等



參考網(wǎng)路上其他人的配置
(~/.zshrc)
ZSH_THEME="powerlevel9k/powerlevel9k"
# 左側(cè)
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir dir_writable vcs vi_mode)
# 右側(cè)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs history ram load time)
# 若當(dāng)前登入的帳號為你的帳號 xxx,就不用特別顯示出來
DEFAULT_USER="g2020070116"
# 使用 nerd font 時(shí)可以顯示更多 icon。詳情請參考 powerlevel9k wiki
POWERLEVEL9K_MODE='nerdfont-complete'
prompt_context() {
   if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
     prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
   fi
}

→ ~ exec $SHELL
→ ~ source ~/.zshrc





現(xiàn)在已有最新版本 Powerlevel10k,
速度及效能比 powerlevel9k快上許多,且配置設(shè)定兼容powerlevel9k
以下三行指令 for 安裝 powerlevel10k Github文檔

若你尚未安裝P9K
$ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k

$ echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>! ~/.zshrc

退出 Iterm 重開


$ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k

修改.zshrc中的 ZSH_THEME參數(shù)為 powerlevel10k/powerlevel10k

$ sed 's/powerlevel9k/powerlevel10k/g' -i ~/.zshrc$ exec zsh

重新啟動(dòng)ZSH


P10K有非常人性化的介面可以調(diào)配設(shè)定
$ p10k configure





個(gè)人的.zshrc (從g9k升級到g10k)設(shè)定:










zsh-autosuggestions

這是ZSH上的一個(gè)套件,在你Terminal輸入指令時(shí)會依照 history(以前輸入過的同樣指令)幫你自動(dòng)完成。
It suggests commands as you type based on history and completions.
Requirements: Zsh v4.3.11 or later

下載autosuggestions到目錄底下的plugins位置

$ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

$ vim ~/.zshrc

找到.zshrc檔案中 plugins參數(shù)這一行(如果沒有的話自己新增)
plugins=(zsh-autosuggestions)
如果有多個(gè)套件,則以空格隔開
plugins=(git zsh-autosuggestions)

之後重新載入
$ source ~/.zshrc
便有自動(dòng)完成提示的功能,當(dāng)灰字出現(xiàn)時(shí)直接 按 →(方向鍵右)就能自動(dòng)完成。


引用網(wǎng)址:http://www.jamesdambrosio.com/TrackBack.php?sn=4841894
All rights reserved. 版權(quán)所有,保留一切權(quán)利

相關(guān)創(chuàng)作

留言共 0 篇留言

我要留言提醒:您尚未登入,請先登入再留言

2喜歡★gjlmotea 可決定是否刪除您的留言,請勿發(fā)表違反站規(guī)文字。

前一篇:【Chrome套件】用u... 後一篇:【W(wǎng)indows】【Go...


face基於日前微軟官方表示 Internet Explorer 不再支援新的網(wǎng)路標(biāo)準(zhǔn),可能無法使用新的應(yīng)用程式來呈現(xiàn)網(wǎng)站內(nèi)容,在瀏覽器支援度及網(wǎng)站安全性的雙重考量下,為了讓巴友們有更好的使用體驗(yàn),巴哈姆特即將於 2019年9月2日 停止支援 Internet Explorer 瀏覽器的頁面呈現(xiàn)和功能。
屆時(shí)建議您使用下述瀏覽器來瀏覽巴哈姆特:
。Google Chrome(推薦)
。Mozilla Firefox
。Microsoft Edge(Windows10以上的作業(yè)系統(tǒng)版本才可使用)

face我們了解您不想看到廣告的心情? 若您願(yuàn)意支持巴哈姆特永續(xù)經(jīng)營,請將 gamer.com.tw 加入廣告阻擋工具的白名單中,謝謝 !【教學(xué)】