目錄

fish shell for WSL Ubuntu

目錄

fish shell 安裝還是有一些東西要記錄下來免得一直撞牆 ….

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
sudo apt update
sudo apt upgrade
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish
cd ~
git clone https://github.com/banga/powerline-shell
cd powerline-shell
sudo python3 setup.py install
sudo rm -rf powerline-shell

接著需要新增一隻檔案來設定 fish 的 prompt

1
2
mkdir -p ~/.config/fish
nano ~/.config/fish/config.fish

內容如下

1
2
3
4
5
function fish_prompt
 powerline-shell --shell bare $status
end

cd ~

這樣就將 fish shell + powerline 安裝完成了。