mg
c30bcc6bbc
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: #3 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
16 lines
347 B
Bash
16 lines
347 B
Bash
#!/bin/bash
|
|
# Aufruf: curl -s https://git.mgrote.net/mg/dotfiles/raw/branch/master/setup_minimal.sh | bash -s ./setup_minimal.sh
|
|
cd ~
|
|
|
|
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
|