arch-install/scripts/setup_dotfiles.sh

15 lines
412 B
Bash
Raw Normal View History

2024-06-07 13:28:55 +00:00
#!/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"
2024-06-11 09:22:20 +00:00
stow git ruby sqlite tmux vim zsh haskell emacs ssh direnv
2024-06-07 13:28:55 +00:00
echo "--- Install Vim plugins"
2024-06-10 14:23:13 +00:00
vim -es -u ~/.vimrc +PluginInstall +qall
2024-06-07 13:28:55 +00:00
echo "--- All done!"
echo "That's all. Please logout of this terminal and login again to apply all changes."