dotfiles/initialSetup.sh

14 lines
375 B
Bash
Raw Normal View History

#!/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
mkdir -p ~/.dotfiles
git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm
git clone https://github.com/jreichmann/dotfiles.git ~/.dotfiles
ln -s ~/.dotfiles/.tmux.conf ~/.tmux.conf