]> localhost Git - dotfiles.git/commitdiff
Add dotfiles
authorMisomosi <[email protected]>
Wed, 2 Oct 2024 22:42:22 +0000 (18:42 -0400)
committerMisomosi <[email protected]>
Wed, 2 Oct 2024 22:42:22 +0000 (18:42 -0400)
.bashrc [new file with mode: 0644]
.exrc [new file with mode: 0644]
.gdbinit [new file with mode: 0644]
.ssh/config [new file with mode: 0644]
.tmux.conf [new file with mode: 0644]
README.md

diff --git a/.bashrc b/.bashrc
new file mode 100644 (file)
index 0000000..f1a57cb
--- /dev/null
+++ b/.bashrc
@@ -0,0 +1,4 @@
+export PATH="$HOME/.local/bin:$PATH"
+export LD_LIBRARY_PATH="$HOME/.local/lib:$LD_LIBRARY_PATH"
+alias gdb="gdb -ex 'source .breakpoints'"
+
diff --git a/.exrc b/.exrc
new file mode 100644 (file)
index 0000000..16ccfce
--- /dev/null
+++ b/.exrc
@@ -0,0 +1,6 @@
+set autoindent
+set ignorecase
+set number
+set showmatch
+set showmode
+set wrapscan
diff --git a/.gdbinit b/.gdbinit
new file mode 100644 (file)
index 0000000..72e86ea
--- /dev/null
+++ b/.gdbinit
@@ -0,0 +1,4 @@
+define hook-quit
+save breakpoints .breakpoints
+end
+
diff --git a/.ssh/config b/.ssh/config
new file mode 100644 (file)
index 0000000..7a080c7
--- /dev/null
@@ -0,0 +1,5 @@
+Host github.com
+       User git
+       Hostname github.com
+       PreferredAuthentications publickey
+       IdentityFile ~/.ssh/id_file
diff --git a/.tmux.conf b/.tmux.conf
new file mode 100644 (file)
index 0000000..45727b8
--- /dev/null
@@ -0,0 +1,6 @@
+# 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
+
index 83916f0683ec1e9031992525fb2c526d4fb8ec92..f9e4f4338cb886f722b2f234dd75db2e308ea174 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,2 +1,56 @@
 # 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
+```