- 發表於
美化 Centos 7 的 Terminal - 安裝 Zsh + Oh My Zsh + 各種好用的插件
- 作者
- 名字
- 成功他媽.阿瑋
- ID
- @kwchang0831
目錄
介紹
本篇文章主要紀錄如何美化 Centos 7 的 Terminal ,讓平常工作起來更高效。
這邊會使用 Zsh 、 Oh My Zsh 與 Powerlevel 10k 主題。
因目前 Centos 7 上用 yum 能安裝到 Zsh 版本只到 5.02,
而 Powerlevel10k 對於 Zsh 版本需求為 5.1 以上,
本篇文章也會介紹如何從 GitHub 下載 Zsh 的原始碼進行編譯安裝。
本篇文章會安裝以下套件:
- Zsh
- Oh My Zsh
- Powerlevel 10k 主題
- zsh-autosuggestions
- zsh-syntax-highlighting
- Zsh-z
安裝環境
這邊使用的環境配置為 Windows 10 搭配 WSL 安裝 Centos 7 , 並使用 Windows Terminal 來進行操作。 直接使用 Centos 7 的話,安裝流程也是大致相同,可供參考。
[ 選用 ] Windows 上 安裝 WSL + Centos 7
若還沒在 Windows 10 上安裝好 Centos 7 的話,
請參考 Windows 上用 WSL 安裝 Centos 7 。
安裝 Patched 字型
我們必須先安裝 Patched 過的字型才能正確地顯示。
下載並安裝以下四個字型:
wget https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Regular.ttf &&
wget https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Bold.ttf &&
wget https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Italic.ttf &&
wget https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Bold%20Italic.ttf
下載完成後在檔案點擊右鍵並選擇 安裝 或 為所有使用者安裝。
更改字體
Windows
到 Windows Terminal 的設定 > Ubuntu 設定檔 > 外觀,
更改字體為 MesloLGS NF 就可以了
安裝 DNF
yum install dnf -y
更新 Centos 7
dnf update -y && dnf upgrade -y
解除安裝 舊版的 Zsh
dnf remove zsh
編譯安裝 新版的 Zsh
- 安裝必要的套件
dnf install curl git make ncurses-devel gcc autoconf man -y
- 下載最新版的 Zsh
git clone -b zsh-5.8 https://github.com/zsh-users/zsh.git /tmp/zsh
這邊下載版本是 5.8 。
若有其他版本的需求,請參考 https://github.com/zsh-users/zsh/releases 。
並更改對應 branch 的版本下載。
- 編譯安裝 Zsh
cd /tmp/zsh
./Util/preconfig
./configure
make -j 20 install.bin install.modules install.fns
- 刪除剛下載的 Zsh Repo
rm -rf /tmp/zsh
- 新增 Zsh
command -v zsh | sudo tee -a /etc/shells
- 更改預設 Shell 為 Zsh
sudo chsh -s $(which zsh)
Oh My Zsh
安裝sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
PowerLevel10k 主題
安裝https://github.com/romkatv/powerlevel10k
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
zsh-autosuggestions 插件
安裝https://github.com/zsh-users/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
輸入指令時,如果看到灰色字的自動完成顯示,可以按下 ➔ 來採用。
zsh-syntax-highlighting 插件
安裝https://github.com/zsh-users/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
修改 zshrc 使用者設定檔
vi ~/.zshrc
點擊 i,進入編輯模式。
- 修改 主題
ZSH_THEME="powerlevel10k/powerlevel10k"
- 使用 Plugins
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
點擊 ESC 跳出編輯模式。
輸入 :wq 儲存。
- 應用修改過的 zshrc
source ~/.zshrc
設定 Powerlevel10k
應用修改 ~/.zshrc
之後,因為第一次使用 Powerlevel10k,會自動啟動設定。
按造你的需求完成設定即可。
重新設定 Powerlevel10k
若之前沒有啟動 Powerlevel10k 設定小幫手,或是還需要重新設定 Powerlevel10k,
打開 Shell 輸入,
p10k configure
Zsh-z 插件
[ 選用 ] 安裝類似於 autojump 的插件,比 cd
更快速地直接跳到想去的資料夾,且效能更好沒有一堆依賴包。
安裝
git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z
修改 zshrc 使用者設定檔
vi ~/.zshrc
- 在 Plugins 增加
zsh-z
例如: plugins=(git zsh-autosuggestions zsh-syntax-highlighting zsh-z)
-
儲存。
-
應用修改過的 zshrc
source ~/.zshrc
使用方法
查看已知的資料夾位置
z
進入在子資料夾中包含此字串的資料夾
cd /
z et
可以用 Tab
來選擇結果,如果有多個符合 et 的資料的話。
查看其他用法
z -h