arch-install/scripts/setup_dotfiles.sh
Ariejan de Vroom 5869a5f6bb
Some checks failed
Lint / Lint (3.10) (push) Failing after 16s
Lint / Lint (3.11) (push) Failing after 20s
update dotfiles script
2024-06-07 15:37:54 +02:00

15 lines
416 B
Bash
Executable File

#!/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 --clean '+source ~/.vimrc' +PluginInstall +qall
echo "--- All done!"
echo "That's all. Please logout of this terminal and login again to apply all changes."