--- /dev/null
+export PATH="$HOME/.local/bin:$PATH"
+export LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH"
+alias gdb="gdb -ex 'source .breakpoints'"
+
--- /dev/null
+# I may or may not have protanopia so this makes the contrast higher while still looking green to me
+set -g window-style bg=#000000,fg=#60e000
+set -g status-style bg=#000000,fg=#60e000
+set -g mouse on
+set -g mode-keys vi
+
# dotfiles
+
+**Are You Tired of Debugging Your Configurations?**
+
+**Have to Deal With Yet Another Trash Embedded System That Can't Handle Your Config?**
+
+**Do Your Coworkers Hate You for Installing UINT_MAX Plugins on Their Computer?**
+
+Worry not because my dotfiles have come to the rescue
+
dotfiles so simple, they fit on a page
+
+## .vimrc / .exrc
+
+```
+set autoindent
+set ignorecase
+set number
+set showmatch
+set showmode
+set wrapscan
+```
+
+## .tmux.conf
+
+```
+# I may or may not have protanopia so this makes the contrast higher while still looking green to me
+set -g window-style bg=#000000,fg=#60e000
+set -g status-style bg=#000000,fg=#60e000
+set -g mouse on
+set -g mode-keys vi
+```
+
+## .gdbinit
+```
+define hook-quit
+save breakpoints .breakpoints
+end
+```
+
+## .bashrc or similar
+
+```
+export PATH="$HOME/.local/bin:$PATH"
+export LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH"
+alias gdb="gdb -ex 'source .breakpoints'"
+```
+
+## .ssh config
+```
+Host github.com
+ User git
+ Hostname github.com
+ PreferredAuthentications publickey
+ IdentityFile ~/.ssh/id_file
+```