mirror of
https://github.com/joshuadavidthomas/dotfiles.git
synced 2025-12-23 05:36:53 +00:00
99 lines
3 KiB
Bash
Executable file
99 lines
3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
INSTALL_DIR=${HOME}/.dotfiles
|
|
OH_MY_ZSH_DIR=${HOME}/.oh-my-zsh
|
|
ZSH_CUSTOM=${OH_MY_ZSH_DIR}/custom
|
|
LOCAL_BIN_DIR=${HOME}/.local/bin
|
|
|
|
if [[ ! -d ${INSTALL_DIR} ]]; then
|
|
echo "Cloning dotfiles in to ${INSTALL_DIR}"
|
|
mkdir -p ${INSTALL_DIR}
|
|
git clone https://github.com/joshuadavidthomas/dotfiles.git ${INSTALL_DIR}
|
|
else
|
|
echo "Updating dotfiles"
|
|
cd ${INSTALL_DIR}
|
|
git pull
|
|
fi
|
|
|
|
if [[ ! -d $OH_MY_ZSH_DIR ]]; then
|
|
echo "Cloning oh-my-zsh in to ${OH_MY_ZSH_DIR}"
|
|
umask g-w,o-w
|
|
git clone -c core.eol=lf -c core.autocrlf=false \
|
|
-c fsck.zeroPaddedFilemode=ignore \
|
|
-c fetch.fsck.zeroPaddedFilemode=ignore \
|
|
-c receive.fsck.zeroPaddedFilemode=ignore \
|
|
--depth=1 --branch master https://github.com/ohmyzsh/ohmyzsh ${OH_MY_ZSH_DIR}
|
|
else
|
|
echo "Updating oh-my-zsh"
|
|
cd ${OH_MY_ZSH_DIR}
|
|
git pull
|
|
fi
|
|
|
|
[[ -d "${HOME}/.tmux/plugins/tpm" ]] || git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
|
|
[[ -d ${LOCAL_BIN_DIR} ]] || mkdir -p ${LOCAL_BIN_DIR}
|
|
|
|
sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- --force --bin-dir ${LOCAL_BIN_DIR}
|
|
|
|
kernel=$(uname -s | tr "[:upper:]" "[:lower:]")
|
|
case "$(uname -m)" in
|
|
x86_64)
|
|
machine=amd64
|
|
;;
|
|
i686 | i386)
|
|
machine=386
|
|
;;
|
|
aarch64)
|
|
machine=arm64
|
|
;;
|
|
*)
|
|
echo "Machine $(uname -m) not supported by the installer.\n" \
|
|
"Go to https://direnv for alternate installation methods."
|
|
exit 1
|
|
;;
|
|
esac
|
|
download_url=$(
|
|
curl -fL https://api.github.com/repos/direnv/direnv/releases/latest \
|
|
| grep browser_download_url \
|
|
| cut -d '"' -f 4 \
|
|
| grep "direnv.$kernel.$machine"
|
|
)
|
|
curl -o "${LOCAL_BIN_DIR}/direnv" -fL "$download_url"
|
|
chmod +x "${LOCAL_BIN_DIR}/direnv"
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --force --to ${LOCAL_BIN_DIR}
|
|
|
|
[[ -d ${HOME}/.fzf ]] || git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install --key-bindings --completion --update-rc --no-bash
|
|
|
|
if [[ ! -f /usr/share/keyrings/githubcli-archive-keyring.gpg ]]; then
|
|
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
|
|
fi
|
|
apt install -y gh
|
|
|
|
ln -sf ${INSTALL_DIR}/.aliases ${HOME}/.aliases
|
|
ln -sf ${INSTALL_DIR}/.functions ${HOME}/.functions
|
|
ln -sf ${INSTALL_DIR}/.gitconfig ${HOME}/.gitconfig
|
|
ln -sf ${INSTALL_DIR}/.npmrc ${HOME}/.npmrc
|
|
ln -sf ${INSTALL_DIR}/.pythonrc ${HOME}/.pythonrc
|
|
ln -sf ${INSTALL_DIR}/.tmux.conf ${HOME}/.tmux.conf
|
|
ln -sf ${INSTALL_DIR}/.zprofile ${HOME}/.zprofile
|
|
ln -sf ${INSTALL_DIR}/.zshenv ${HOME}/.zshenv
|
|
ln -sf ${INSTALL_DIR}/.zshrc ${HOME}/.zshrc
|
|
|
|
for binary in ${INSTALL_DIR}/bin/*
|
|
do
|
|
ln -sf ${binary} ${HOME}/.local/bin
|
|
done
|
|
|
|
for config in ${INSTALL_DIR}/.config/*
|
|
do
|
|
ln -sf ${config} ${HOME}/.config
|
|
done
|
|
|
|
if [[ -d /mnt/c ]]; then
|
|
cp -f ${INSTALL_DIR}/mnt/c/Users/jthomas/AppData/Roaming/Alacritty/alacritty.yml /mnt/c/Users/jthomas/AppData/Roaming/Alacritty/alacritty.yml
|
|
fi
|