dotfiles/install_init.sh

12 lines
304 B
Bash
Raw Normal View History

2018-03-04 10:07:06 +01:00
#!/bin/bash
function installInit {
printHeading "Install OMF"
2018-09-28 16:42:55 +02:00
curl -L https://get.oh-my.fish | fish
2018-03-04 10:07:06 +01:00
printSubHeading "Install OMF Theme"
fish -c "omf install bobthefish"
2020-11-25 15:08:29 +01:00
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
fisher add jethrokuan/z
2018-03-04 10:07:06 +01:00
}