mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:26:31 +00:00
24 lines
525 B
Bash
24 lines
525 B
Bash
#! /bin/bash
|
|
|
|
|
|
if ! command_exist fish ; then
|
|
sudo_package 'fish'
|
|
fi
|
|
|
|
if [ ! -d $HOME/.oh-my-fish ]; then
|
|
curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.fish | fish
|
|
fi
|
|
|
|
OMF_CUSTOM=$DEFAULT_ASSETS_PATH/custom
|
|
FISH_CONFIG=$HOME/.config/fish/config.fish
|
|
|
|
if [ ! -f $FISH_CONFIG ]; then
|
|
touch $FISH_CONFIG
|
|
fi
|
|
|
|
add_line 'set fish_path $HOME/.oh-my-fish' $FISH_CONFIG
|
|
add_line "set fish_custom $OMF_CUSTOM" $FISH_CONFIG
|
|
add_line '. $fish_path/oh-my-fish.fish' $FISH_CONFIG
|
|
|
|
fish -c 'omf install'
|