2021-08-26 12:10:18 +02:00
|
|
|
#!/bin/bash
|
2022-12-14 11:56:35 +01:00
|
|
|
# Aufruf: wget https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh && bash ./setup_minimal.sh
|
2021-08-26 12:10:18 +02:00
|
|
|
cd ~
|
|
|
|
|
2024-06-10 11:31:41 +02:00
|
|
|
sudo apt update && sudo apt install git tmux vim ripgrep ca-certificates curl wget tree keychain
|
2022-02-16 08:50:08 +01:00
|
|
|
|
2022-12-13 15:29:18 +01:00
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
2021-08-26 12:10:18 +02:00
|
|
|
git clone https://git.mgrote.net/mg/dotfiles ~/dotfiles
|
|
|
|
|
|
|
|
ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf
|
|
|
|
ln -s ~/dotfiles/.vimrc ~/.vimrc
|
|
|
|
|
2024-06-20 10:56:45 +02:00
|
|
|
ln -s ~/dotfiles/vim/spell/ ~/.vim/
|
|
|
|
|
2022-12-13 15:29:18 +01:00
|
|
|
echo "source ~/dotfiles/.bash_extra" >> ~/.bashrc
|
2021-08-26 12:10:18 +02:00
|
|
|
|
2022-12-13 15:29:18 +01:00
|
|
|
vim +PluginInstall +qall
|
2021-08-26 12:10:18 +02:00
|
|
|
|
|
|
|
source ~/.bashrc
|