2021-08-26 12:10:18 +02:00
|
|
|
#!/bin/bash
|
2021-08-26 12:26:46 +02:00
|
|
|
# Aufruf: curl -s https://git.mgrote.net/mg/dotfiles/raw/branch/master/setup_minimal.sh | bash -s ./setup_minimal.sh
|
2021-08-26 12:10:18 +02:00
|
|
|
cd ~
|
|
|
|
|
2022-02-17 18:35:37 +01:00
|
|
|
sudo apt install git tmux vim exa rigrep
|
2022-02-16 08:50:08 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
|
cat <<'EOF' >> ~/.bashrc
|
|
|
|
source ~/dotfiles/.bash_extra
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
|
source ~/.bashrc
|