50 lines
1.6 KiB
Bash
Executable File
50 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ $SPIN ]; then
|
|
DOTFILES="$HOME/dotfiles"
|
|
else
|
|
DOTFILES="$(dirname -- "$(readlink -f -- "$0")")"
|
|
fi
|
|
|
|
echo "🐚 Installing dotfiles from '$DOTFILES'..."
|
|
|
|
ln -sf "$DOTFILES/ackrc" ~/.ackrc
|
|
ln -sf "$DOTFILES/gitconfig" ~/.gitconfig
|
|
ln -sf "$DOTFILES/inputrc" ~/.inputrc
|
|
ln -sf "$DOTFILES/tmux.conf" ~/.tmux.conf
|
|
ln -sf "$DOTFILES/zshenv" ~/.zshenv
|
|
ln -sf "$DOTFILES/zshrc" ~/.zshrc
|
|
|
|
mkdir -p ~/.config
|
|
ln -sf "$DOTFILES/starship.toml" ~/.config/starship.toml
|
|
|
|
if [ ! -d ~/.vim ]; then
|
|
git clone --quiet https://github.com/deuxpi/dotvim.git ~/.vim
|
|
ln -sf ~/.vim/vimrc ~/.vimrc
|
|
else
|
|
git -C ~/.vim pull --quiet
|
|
fi
|
|
mkdir -p ~/.config/coc/
|
|
vim +'PlugInstall --sync' +qa
|
|
|
|
if [ ! -d ~/.oh-my-zsh ]; then
|
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended --keep-zshrc
|
|
fi
|
|
if [ ! -d ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions ]; then
|
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
|
fi
|
|
if [ ! -d ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting ]; then
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
|
fi
|
|
mkdir -p ~/.oh-my-zsh/custom/themes
|
|
ln -sf "$DOTFILES/themes/witchhazelhypercolor.zsh-theme" ~/.oh-my-zsh/custom/themes/witchhazelhypercolor.zsh-theme
|
|
|
|
if ! [ -x "$(command -v starship)" ]; then
|
|
sh -c "$(curl -fsSL https://starship.rs/install.sh)" -- -y
|
|
fi
|
|
|
|
mkdir -p ~/.config/kitty/
|
|
ln -sf "$DOTFILES/kitty.conf" ~/.config/kitty/kitty.conf
|