Last active
June 4, 2017 06:55
-
-
Save kcchien/8eef9ea8cd3947c2588ff656a8d7c906 to your computer and use it in GitHub Desktop.
Install fish shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy this file to ~/.config/fish/ | |
function fish_prompt | |
~/powerline-shell/powerline-shell.py $status --shell bare ^/dev/null | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 以下動作需要切換到使用者家目錄再開始進行 | |
cd ~ | |
# 透過brew安裝fish | |
brew install fish | |
# 把 "/usr/local/bin/fish" 登錄到 /etc/shells | |
echo "/usr/local/bin/fish" | sudo tee -a /etc/shells | |
# 將fish shell設定為預設的shell | |
chsh -s /usr/local/bin/fish | |
# 安裝Oh My Fish | |
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish | |
# 安裝 nvm | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash | |
# 安裝 fish shell 的nvm 套件 | |
ofm install nvm | |
# 透過brew安裝python | |
brew install python | |
# 安裝Powerline | |
# 下列兩個指令,選擇其中一條執行即可,差別只在於一個是安裝current release 版本 | |
# 一個是安裝 latest development release版本 | |
# 1. 安裝 current release 版本 | |
pip install powerline-status | |
# 2. 安裝 latest development release版本 | |
# pip install git+git://github.com/powerline/powerline | |
# 安裝 Powerline shell style 命令提示字元 | |
git clone https://github.com/milkbikis/powerline-shell | |
cd powerline-shell | |
cp config.py.dist config.py | |
./install.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment