mirror of
https://github.com/vale981/dotfiles
synced 2025-03-04 09:01:38 -05:00
11 lines
304 B
Bash
11 lines
304 B
Bash
#!/bin/bash
|
|
function installInit {
|
|
printHeading "Install OMF"
|
|
|
|
curl -L https://get.oh-my.fish | fish
|
|
|
|
printSubHeading "Install OMF Theme"
|
|
fish -c "omf install bobthefish"
|
|
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
|
|
fisher add jethrokuan/z
|
|
}
|