2018-03-29 10:49:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Install packages which are frequently used by me
|
|
|
|
sudo -i dnf install tmux tree git
|
|
|
|
|
|
|
|
# Checkout my dotfiles and the tmux-plugin-manager
|
|
|
|
mkdir -p ~/.tmux/plugins
|
2018-03-29 13:07:40 +00:00
|
|
|
mkdir -p ~/.dotfiles
|
2018-03-29 10:49:08 +00:00
|
|
|
git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm
|
2018-03-29 13:07:40 +00:00
|
|
|
git clone https://github.com/jreichmann/dotfiles.git ~/.dotfiles
|
|
|
|
|
|
|
|
ln -s ~/.dotfiles/.tmux.conf ~/.tmux.conf
|
2018-03-29 10:49:08 +00:00
|
|
|
|