一個開箱即用的 Shell
安裝
前置依賴,確保 git, curl, wget, zsh 已安裝
pacman -S git
pacman -S curl
pacman -S wget
pacman -S zsh
透過 curl
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
透過 wget
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
oh my zsh 配置
配置文件在$home/.zshrc
更換主題:
- 編輯
~/.zshrc
- 把
ZSH_THEME="robbyrussell"
改成ZSH_THEME="ys"
ys 這個主題目前是我最喜歡的,如果想查看更多其它的主題,可查看 ~/.oh-my-zsh/themes/
目錄
添加 plug-in:
比如要把 sudo 加入 plug-in
- 編輯
~/.zshrc
- 把原本
plugins=(git)
改成plugins=(git sudo)
說一下 sudo 這個 plug-in ,它的功能很簡單,只要連按兩次 esc 鍵,便會自動在指令最前方加上 sudo
,使用起來十分方便。