開源的zsh配置工具,它的主題和插件系統能夠爲zsh擴展外觀和不少有用的功能,官方是這樣介紹的:git
Oh-My-Zsh is an open source, community-driven framework for managing your ZSH configuration. It comes bundled with a ton of helpful functions, helpers, plugins, themes, and a few things that make you shout...github
Ubuntu默認的終端樣式,用了好久,其實也不差shell
可是用上oh-my-zsh後,更加美觀且實用vim
1.安裝zsh:sudo apt install zsh
bash
2.確認安裝:zsh --version
curl
3.設置爲默認shell:sudo chsh www -s $(which zsh)
工具
4.註銷從新登錄字體
默認的zsh很簡陋,就不截圖了url
1.安裝:sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
插件
2.設置主題爲agnoster
: vim ~/.zshrc
ZSH_THEME="agnoster"
3.默認用戶下隱藏user@hostname
: vim ~/.zshrc
export DEFAULT_USER="www"
此時終端是這樣的,由於字體不支持,顯示很奇怪
angoster
這個主題須要Powerline-patched font
這個字體才能正常
1.安裝
# clone git clone https://github.com/powerline/fonts.git # install cd fonts ./install.sh # clean-up a bit cd .. rm -rf fonts
2.設置終端字體
打開Edit->Profiles->Default->Edit->Font
, 選擇Ubuntu Mono derivative Powerline
至此完成了最簡單的配置,感覺飛起的命令行吧!
參考: