shoestrap/main-cookbook

104 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-03-21 20:05:28 +00:00
#!/bin/bash
# Initialization - DO NOT REMOVE
. helpers/initialize
##############################################################
### Customizations start here ################################
##############################################################
2013-08-08 03:23:13 +00:00
# Get current directory for future use in links
cd "$(dirname "$0")" || { echo "Could not change directory to $0"; exit 1;}
2013-08-08 03:23:13 +00:00
PROJECT_DIR=$(pwd)
export PROJECT_DIR
2012-03-21 20:05:28 +00:00
2013-08-08 03:23:13 +00:00
detect_package_manager
2012-03-21 20:05:28 +00:00
2013-08-08 03:23:13 +00:00
init_paths_and_vars
# Do prompting early to make longer install easier
install_packages=false
if ! is_installed "packages" || prompt_yn "Reinstall packages?" ; then
install_packages=true
fi
build_vim=false
2013-08-08 03:23:13 +00:00
if [ "$PACKAGE_MANAGER" == 'apt-get' ]; then
# Optional
is_installed "build-vim"
2013-08-08 03:23:13 +00:00
if prompt_yn "Compile vim?" ; then
build_vim=true
2013-08-08 03:23:13 +00:00
fi
fi
build_neovim=false
if ! command_exist 'nvim' && prompt_yn "Build Neovim?" ; then
build_neovim=true
2015-06-03 20:53:41 +00:00
fi
2019-04-11 20:23:36 +00:00
install_rustup=false
if ! command_exist 'rustup' && prompt_yn "Install rustup?" ; then
install_rustup=true
fi
2013-08-08 03:23:13 +00:00
# Optional
install_sfdc=false
2022-04-05 23:54:18 +00:00
# if ! is_installed "salesforce" && prompt_yn "Install Salesforce tools?" ; then
# install_sfdc=true
# fi
2013-08-08 03:23:13 +00:00
2021-06-09 01:25:14 +00:00
install_ui_terms=false
if ! is_installed "ui_terms" && prompt_yn "Install UI terminals?" ; then
install_ui_terms=true
fi
### Run recipes
if $install_packages ; then
recipe 'packages'
set_installed "packages"
2015-06-03 20:53:20 +00:00
fi
2013-08-08 03:23:13 +00:00
recipe 'dotfiles'
recipe 'bin'
if [ "$(uname)" == 'Darwin' ]; then
2019-04-10 01:16:10 +00:00
recipe 'mac-files'
recipe 'mac-bin'
fi
2013-08-08 03:23:13 +00:00
recipe 'git'
recipe 'vim-settings'
2021-07-26 01:43:12 +00:00
recipe 'golang'
recipe 'fish'
2021-06-09 01:25:14 +00:00
if $install_ui_terms ; then
recipe 'alacritty'
recipe 'kitty'
2022-04-05 23:54:31 +00:00
set_installed "ui_terms"
2021-06-09 01:25:14 +00:00
fi
2013-08-08 03:23:13 +00:00
git submodule init
git submodule update
2019-04-11 20:23:36 +00:00
if $install_rustup ; then
recipe 'rust'
set_installed 'rustup'
fi
if $build_vim ; then
recipe 'build-vim'
set_installed "build-vim"
2013-08-08 03:23:13 +00:00
fi
if $build_neovim ; then
recipe 'build-neovim'
2015-06-03 20:53:41 +00:00
set_installed "neovim"
fi
2013-08-08 03:23:13 +00:00
if $install_sfdc ; then
recipe 'salesforce'
set_installed 'salesforce'
fi
2012-03-21 20:05:28 +00:00
### Show the Finished banner
finished
2013-08-08 03:23:13 +00:00
# vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab