Add script to automate fish install
This commit is contained in:
parent
810bc8380f
commit
6117e89bd2
1 changed files with 8 additions and 0 deletions
8
installFish.sh
Normal file
8
installFish.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
sudo apt-add-repository ppa:fish-shell/release-3 -y
|
||||
sudo apt update
|
||||
sudo apt install fish fzf bat procps -y
|
||||
sudo chsh -s /usr/bin/fish
|
||||
fish -c 'set fish_greeting'
|
||||
curl -sL https://git.io/fisher | fish -c 'source && fisher install jorgebucaran/fisher'
|
||||
fish -c 'fisher install jethrokuan/fzf'
|
||||
wget https://gitlab.com/kyb/fish_ssh_agent/raw/master/functions/fish_ssh_agent.fish -P ~/.config/fish/functions/
|
Reference in a new issue