Skip to content

Instantly share code, notes, and snippets.

@dmendiza
Created September 12, 2023 17:56
Show Gist options
  • Save dmendiza/dee754a65893a698957f3c2e52bd632e to your computer and use it in GitHub Desktop.
Save dmendiza/dee754a65893a698957f3c2e52bd632e to your computer and use it in GitHub Desktop.
Stuff I need to get going.
#!/bin/bash
sudo dnf install -y git tmux vim
git clone https://github.com/dmendiza/dotfiles.git $HOME/.dotfiles
cfgfiles=(
.gitconfig
.tmux.conf
.vimrc
)
for cfg in "${cfgfiles[@]}"; do
ln -s $HOME/.dotfiles/$cfg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment