1
mirror of https://github.com/jakejarvis/dotfiles.git synced 2025-04-26 03:45:21 -04:00
dotfiles/install.sh

77 lines
2.7 KiB
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "🙏 Deep breaths, everything will (probably) be fine!"
echo ""
# location of the *full repo* (defaults to ~/.dotfiles)
DOTFILES_PATH="${DOTFILES_PATH:="$HOME/.dotfiles"}"
# location of this script (should be right next to all the other files, but we handle that next if it's not)
INSTALLER_PATH="$(dirname "$(realpath "${BASH_SOURCE[0]}")")"
# if this is a codespace, link automatically cloned dotfiles repo to the expected DOTFILES_PATH
# https://docs.github.com/en/codespaces/troubleshooting/troubleshooting-personalization-for-codespaces#troubleshooting-dotfiles
if [[ "$CODESPACES" = "true" ]] && [[ -d /workspaces/.codespaces/.persistedshare/dotfiles ]]; then
ln -sf /workspaces/.codespaces/.persistedshare/dotfiles "$DOTFILES_PATH"
fi
# clone this repo if this script is all by itself and/or we're not in the expected location
if [[ "$INSTALLER_PATH" != "$DOTFILES_PATH" ]] && [[ ! -d "$DOTFILES_PATH" ]]; then
git clone https://github.com/jakejarvis/dotfiles.git "$DOTFILES_PATH"
echo "Successfully cloned the full repo to '$DOTFILES_PATH'"
echo "Run install.sh from that directory to continue. Exiting now..."
exit 0
fi
# set up symlinks from various default paths to files in this repo
if [[ ! -d ~/.config ]]; then
mkdir -p ~/.config
fi
ln -sf "$DOTFILES_PATH/zsh/.zshrc" ~/.zshrc
ln -sf "$DOTFILES_PATH/zsh/.zprofile" ~/.zprofile
ln -sf "$DOTFILES_PATH/git/.gitconfig" ~/.gitconfig
ln -sf "$DOTFILES_PATH/git/.gitignore_global" ~/.gitignore_global
ln -sf "$DOTFILES_PATH/starship/config.toml" ~/.config/starship.toml
# this file will be sourced by .zshrc for more sensitive variables/settings
touch ~/.zshrc.local
# prepare zinit manually
ZINIT_HOME="$HOME/.local/share/zinit/zinit.git"
if [[ ! -d "$ZINIT_HOME" ]]; then
mkdir -p "$(dirname "$ZINIT_HOME")"
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
fi
# the remainder of the setup tasks are OS-specific
if [[ "$OSTYPE" = "darwin"* ]]; then
# final symlinks
if [[ ! -d ~/.ssh ]]; then
mkdir -p ~/.ssh && chmod 700 ~/.ssh
fi
ln -sf "$DOTFILES_PATH/ssh/.ssh/config" ~/.ssh/config
ln -sf "$DOTFILES_PATH/nano/brew.nanorc" ~/.nanorc
ln -sf "$DOTFILES_PATH/Brewfile" ~/Brewfile
# suppress terminal login banners
touch ~/.hushlogin
# shellcheck disable=SC1090,SC1091
source "$DOTFILES_PATH/macos/macos.sh"
elif [[ "$OSTYPE" = "linux-gnu"* ]]; then
# final symlinks
ln -sf "$DOTFILES_PATH/nano/default.nanorc" ~/.nanorc
# shellcheck disable=SC1090,SC1091
source "$DOTFILES_PATH/linux/linux.sh"
else
echo "I don't recognize this OS... skipping extra steps."
fi
# wow
echo ""
echo "🎉 It actually worked!"
echo "Log out and log back in (or just restart) to finish installing all ZSH features."