.dotfiles/install.sh

52 lines
1.4 KiB
Bash
Raw Normal View History

#!/bin/sh
2022-04-17 21:14:14 +02:00
# Path to your dotfiles.
export DOTFILES=$HOME/.dotfiles
echo "Setting up your system..."
echo "Your dotfiles path: $DOTFILES"
2023-10-29 17:50:49 +01:00
if [ ! -d $HOME/.znap/znap ]; then
echo "Installing znap..."
2023-10-29 17:50:49 +01:00
sh -c "$(git clone --depth 1 -- https://github.com/marlonrichert/zsh-snap.git $HOME/.znap/znap)"
fi
# Removes .zshrc from $HOME (if it exists) and symlinks the .zshrc file from the .dotfiles
rm -rf $HOME/.zshrc
ln -s $DOTFILES/zsh/.zshrc $HOME/.zshrc
# Relink other software configs
2024-04-02 23:40:18 +02:00
# git
# We only include our config here to allow other tools to still modify the gitconfig locally with user specific paths etc.
# E.g. znap adds maintenance entries there.
if ! grep -q "path = $DOTFILES/.gitconfig" ~/.gitconfig; then
echo "Adding gitconfig include statement to ~/.gitconfig"
2024-04-02 23:40:18 +02:00
echo """
2024-04-02 23:40:18 +02:00
[include]
path = $DOTFILES/.gitconfig
2024-04-02 23:40:18 +02:00
""" >> $HOME/.gitconfig
fi
2024-04-02 23:40:18 +02:00
# tmux
rm -rf $HOME/.tmux.conf
ln -s $DOTFILES/.tmux.conf $HOME/.tmux.conf
# nvim
rm -rf $HOME/.config/nvim
mkdir -p $HOME/.config
ln -s $DOTFILES/nvim $HOME/.config/nvim
# NVIM config:
# Install vim-plug for nvim
if [ ! -f ~/.config/nvim/autoload/plug.vim ]; then
echo "Installing vim-plug for nvim"
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
# Install + update all nvim plugins
# nvim +PlugUpgrade +PlugUpdate +qall
echo "Done! All set up, ready to be used!"