Add dotfiles script
Some checks failed
Lint / Lint (3.10) (push) Failing after 14s
Lint / Lint (3.11) (push) Failing after 17s

This commit is contained in:
Ariejan de Vroom 2024-06-07 15:28:55 +02:00
parent 1599967266
commit bbef7f85ee
Signed by: ariejan
GPG Key ID: AD739154F713697B

15
scripts/setup_dotfiles.sh Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env -S bash -i
echo "--- Cloning dotfiles repository"
cd $HOME
git clone gitea@git.devroom.io:ariejan/dotfiles.git
cd dotfiles
echo "--- Symlinking dotfiles"
stow git ruby sqlite tmux vim zsh haskell emacs ssh
echo "--- Install Vim plugins"
vim +PlugInstall +qall
echo "--- All done!"
echo "That's all. Please logout of this terminal and login again to apply all changes."