split bootstrap logic

This commit is contained in:
MorganGeek 2020-07-05 08:45:22 +02:00
parent 74319d622c
commit d5a5a180a3

View File

@ -12,15 +12,11 @@ ln -snf ~/Code/dotfiles/dot_scripts ~/.scripts
ln -snf ~/Code/dotfiles/dot_gitconfig ~/.gitconfig ln -snf ~/Code/dotfiles/dot_gitconfig ~/.gitconfig
chmod +x ~/.scripts/*.sh chmod +x ~/.scripts/*.sh
# Install missing package (Linux) if [[ $(uname) == "Linux" ]]; then
case "$(uname -s)" in IS_LINUX=true
Linux) else
echo "(Linux) Installing Development Tools" IS_LINUX=false
yum install sudo -y fi
sudo yum groupinstall 'Development Tools' -y
sudo yum install git which zip unzip ruby curl file docker gcc make libxcrypt-compat vim-enhanced -y
;;
esac
if [[ $(uname) == "Darwin" ]]; then if [[ $(uname) == "Darwin" ]]; then
IS_MAC=true IS_MAC=true
@ -28,20 +24,31 @@ else
IS_MAC=false IS_MAC=false
fi fi
# Install missing package (Linux)
function installLinuxPackages() {
if [ "$IS_LINUX" = true ]; then
echo "(Linux) Installing Development Tools"
yum install sudo -y
sudo yum groupinstall 'Development Tools' -y
sudo yum install git which zip unzip ruby curl file docker gcc make libxcrypt-compat vim-enhanced -y
fi
}
# Install HomeBrew # Install HomeBrew
function installBrew() {
if [ "$IS_MAC" = true ]; then if [ "$IS_MAC" = true ]; then
echo "(Mac OS X) installing homebrew" echo "(Mac OS X) installing homebrew"
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Prevent `Error: Your Homebrew is outdated. Please run `brew update`.` # Prevent `Error: Your Homebrew is outdated. Please run `brew update`.`
echo "Updating Homebrew" echo "Updating Homebrew"
brew update brew update
fi
# Path to ruby # Path to ruby
export PATH="/usr/local/opt/ruby/bin:$PATH" export PATH="/usr/local/opt/ruby/bin:$PATH"
fi
}
# Create symbolic links # Create symbolic links
function createSymbolicLinks() {
echo "Creating symbolic links" echo "Creating symbolic links"
ln -snf ~/Code/dotfiles/dot_profile ~/.profile ln -snf ~/Code/dotfiles/dot_profile ~/.profile
ln -snf ~/.local/share/chezmoi/ ~/dotfiles ln -snf ~/.local/share/chezmoi/ ~/dotfiles
@ -51,8 +58,7 @@ ln -snf ~/Code/dotfiles/dot_bash_profile ~/.bash_profile
ln -snf ~/Code/dotfiles/dot_macos ~/.macos ln -snf ~/Code/dotfiles/dot_macos ~/.macos
ln -snf ~/Code/dotfiles/dot_scripts/checkci.sh /usr/local/bin/checkci ln -snf ~/Code/dotfiles/dot_scripts/checkci.sh /usr/local/bin/checkci
ln -snf ~/Code/dotfiles/dot_vimrc ~/.vimrc ln -snf ~/Code/dotfiles/dot_vimrc ~/.vimrc
# custom linters ln -snf ~/Code/dotfiles/dot_vim/ale_linters ~/.vim/ale_linters # custom linters
ln -snf ~/Code/dotfiles/dot_vim/ale_linters ~/.vim/ale_linters
ln -snf ~/Code/dotfiles/dot_zsh_aliases ~/.zsh_aliases ln -snf ~/Code/dotfiles/dot_zsh_aliases ~/.zsh_aliases
ln -snf ~/Code/dotfiles/dot_zsh_functions ~/.zsh_functions ln -snf ~/Code/dotfiles/dot_zsh_functions ~/.zsh_functions
ln -snf ~/Code/dotfiles/dot_zshrc ~/.zshrc ln -snf ~/Code/dotfiles/dot_zshrc ~/.zshrc
@ -64,45 +70,44 @@ ln -snf ~/Code/dotfiles/private_dot_3llo/config.sh ~/.3llo_config
ln -snf ~/Code/dotfiles/dot_ansiweatherrc ~/.ansiweatherrc ln -snf ~/Code/dotfiles/dot_ansiweatherrc ~/.ansiweatherrc
ln -snf ~/Code/dotfiles/dot_p10k.zsh ~/.p10k.zsh ln -snf ~/Code/dotfiles/dot_p10k.zsh ~/.p10k.zsh
ln -snf ~/Code/dotfiles/dot_git-template ~/.git-template ln -snf ~/Code/dotfiles/dot_git-template ~/.git-template
}
# Install Docker Desktop for Mac # Install dependencies (apps, fonts, ...) with Brew
function installMacSoftware() {
if [ "$IS_MAC" = true ]; then if [ "$IS_MAC" = true ]; then
echo "(Mac OS X) Installing Docker" echo "(Mac OS X) Installing Docker"
~/.scripts/install_docker_for_mac.sh ~/.scripts/install_docker_for_mac.sh
fi
# Install dependencies (apps, fonts, ...) with Brew
if [ "$IS_MAC" = true ]; then
echo "(Mac OS X) Brew installing stuff (apps, fonts, ...)" echo "(Mac OS X) Brew installing stuff (apps, fonts, ...)"
ln -snf ~/Code/dotfiles/Brewfile ~/Brewfile ln -snf ~/Code/dotfiles/Brewfile ~/Brewfile
brew bundle brew bundle
fi
# Install dependencies (apps, fonts, ...) for CentOS
case "$(uname -s)" in
Linux)
echo "(CentOS) Installing stuff (apps, ...)"
chmod +x ~/Code/dotfiles/centos.sh
~/Code/dotfiles/centos.sh
;;
esac
# Configure Mac specific symbolic links # Configure Mac specific symbolic links
if [ "$IS_MAC" = true ]; then
echo "(Mac OS X) Adding symbolic links" echo "(Mac OS X) Adding symbolic links"
mkdir -pv "$HOME/Library/Application Support/Code/User/snippets" mkdir -pv "$HOME/Library/Application Support/Code/User/snippets"
ln -snf "$HOME/.config/Code/User/settings.json" "$HOME/Library/Application Support/Code/User/settings.json" ln -snf "$HOME/.config/Code/User/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"
ln -snf "$HOME/Library/Mobile Documents/com~apple~CloudDocs/Mackup/Library/Application Support/Code/User/snippets" "$HOME/Library/Application Support/Code/User/snippets" ln -snf "$HOME/Library/Mobile Documents/com~apple~CloudDocs/Mackup/Library/Application Support/Code/User/snippets" "$HOME/Library/Application Support/Code/User/snippets"
ln -snf "$HOME/Library/Mobile Documents/com~apple~CloudDocs/Mackup/.mackup.cfg" "$HOME/.mackup.cfg" ln -snf "$HOME/Library/Mobile Documents/com~apple~CloudDocs/Mackup/.mackup.cfg" "$HOME/.mackup.cfg"
fi fi
}
# Install dependencies (apps, fonts, ...) for CentOS
function installLinuxSoftware() {
if [ "$IS_LINUX" = true ]; then
echo "(CentOS) Installing stuff (apps, ...)"
chmod +x ~/Code/dotfiles/centos.sh
~/Code/dotfiles/centos.sh
fi
}
# Switch to ZSH # Switch to ZSH
function switchToZsh() {
sudo -v sudo -v
echo "switching to ZSH" echo "switching to ZSH"
command -v zsh >>/etc/shells command -v zsh >>/etc/shells
chsh -s "$(command -v zsh)" chsh -s "$(command -v zsh)"
}
# Use SDKMan to install development tools # Use SDKMan to install development tools
function installSDKMan() {
echo "Installing SDKMan as development tools manager" echo "Installing SDKMan as development tools manager"
curl -s "https://get.sdkman.io" | bash curl -s "https://get.sdkman.io" | bash
@ -113,9 +118,9 @@ sdk install java 8.0.222-zulu
sdk install kotlin sdk install kotlin
echo "SDKMan updating" echo "SDKMan updating"
sdk selfupdate sdk selfupdate
}
case "$(uname -s)" in function installRubyOnLinux() {
Linux) if [ "$IS_LINUX" = true ]; then
echo '(Linux) Installing ruby' echo '(Linux) Installing ruby'
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import - curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import - curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import -
@ -124,15 +129,18 @@ Linux)
rvm reload rvm reload
rvm requirements run rvm requirements run
rvm install 2.3.7 rvm install 2.3.7
;; fi
esac }
# Install bundler for managing ruby dependencies and Gemfile # Install bundler for managing ruby dependencies and Gemfile
function installBundler() {
echo "Installing bundler for managing ruby dependencies and Gemfile" echo "Installing bundler for managing ruby dependencies and Gemfile"
sudo gem install bundler sudo gem install bundler
bundle install bundle install
}
# Install Oh My Zsh and some cool dependencies # Install Oh My Zsh and some cool dependencies
function installOhMyZsh() {
echo "Installing Oh My Zsh + customizing themes and plugins" echo "Installing Oh My Zsh + customizing themes and plugins"
echo 'source /usr/local/opt/powerlevel10k/powerlevel10k.zsh-theme' ~/.zshrc >>! echo 'source /usr/local/opt/powerlevel10k/powerlevel10k.zsh-theme' ~/.zshrc >>!
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
@ -141,7 +149,8 @@ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$ZSH_CUSTOM/
git clone https://github.com/zsh-users/zsh-autosuggestions "$ZSH_CUSTOM/plugins/zsh-autosuggestions" git clone https://github.com/zsh-users/zsh-autosuggestions "$ZSH_CUSTOM/plugins/zsh-autosuggestions"
ln -snf ~/Code/dotfiles/dot_zshrc ~/.zshrc ln -snf ~/Code/dotfiles/dot_zshrc ~/.zshrc
ln -snf ~/Code/dotfiles/dot_zshrc.pre-oh-my-zsh ~/.zshrc.pre-oh-my-zsh ln -snf ~/Code/dotfiles/dot_zshrc.pre-oh-my-zsh ~/.zshrc.pre-oh-my-zsh
}
function installVimPlugins() {
echo "Installing Vundle + VIM Plugins" echo "Installing Vundle + VIM Plugins"
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall >/dev/null vim +PluginInstall +qall >/dev/null
@ -150,25 +159,32 @@ cd "$HOME/.vim/bundle/YouCompleteMe" || exit
./install.py --all ./install.py --all
cd "$HOME" || exit cd "$HOME" || exit
git clone https://github.com/dbeniamine/cheat.sh-vim.git ~/.vim/cheat.sh-vim git clone https://github.com/dbeniamine/cheat.sh-vim.git ~/.vim/cheat.sh-vim
}
# Install no-more-secrets # Install no-more-secrets
function installNoMoreSecrets() {
echo "Installing no-more-secrets (for fun)" echo "Installing no-more-secrets (for fun)"
git clone https://github.com/bartobri/no-more-secrets.git ~/Code/no-more-secrets git clone https://github.com/bartobri/no-more-secrets.git ~/Code/no-more-secrets
cd "$HOME/Code/no-more-secrets" || exit cd "$HOME/Code/no-more-secrets" || exit
make nms sneakers make nms sneakers
sudo make install sudo make install
cd "$HOME" || exit cd "$HOME" || exit
}
# OSX Defaults # OSX Defaults
function overrideMacOsDefaults() {
if [ "$IS_MAC" = true ]; then if [ "$IS_MAC" = true ]; then
echo "(Mac OS X) Loading preferences" echo "(Mac OS X) Loading preferences"
sudo sh .macos sudo sh .macos
fi fi
}
# Customize /etc/hosts # Customize /etc/hosts
function overrideEtcHosts() {
echo "Overriding /etc/hosts" echo "Overriding /etc/hosts"
curl https://someonewhocares.org/hosts/hosts -o /etc/hosts curl https://someonewhocares.org/hosts/hosts -o /etc/hosts
}
function installSoftware() {
# Install pip and pipenv # Install pip and pipenv
echo "Installing pip and pipenv" echo "Installing pip and pipenv"
sudo easy_install pip sudo easy_install pip
@ -231,12 +247,39 @@ go get -u -v github.com/camptocamp/terraboard
sudo curl -L git.io/scope -o /usr/local/bin/scope sudo curl -L git.io/scope -o /usr/local/bin/scope
sudo chmod a+x /usr/local/bin/scope sudo chmod a+x /usr/local/bin/scope
#scope launch }
# Upgrade # Upgrade
function upgradeSoftware() {
echo "Upgrading apps" echo "Upgrading apps"
~/.scripts/upgrade.sh ~/.scripts/upgrade.sh
}
# Reload # Reload
function reloadConfig() {
echo "Reloading config" echo "Reloading config"
~/.scripts/reload.sh ~/.scripts/reload.sh
}
function doIt() {
installLinuxPackages;
installBrew;
createSymbolicLinks;
installMacSoftware;
installLinuxSoftware;
switchToZsh;
installSDKMan;
installRubyOnLinux;
installBundler;
installOhMyZsh;
installVimPlugins;
installNoMoreSecrets;
overrideMacOsDefaults;
overrideEtcHosts;
installSoftware;
upgradeSoftware;
reloadConfig;
}
doIt;