summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-15 00:23:00 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2025-01-15 00:23:47 +0100
commit2e605b51e6e00ccf2eaf85b3e98423f36823ab99 (patch)
treef895481caa416d916e811ac2ef1377e006550813
parent8fb1c19e7c3a654eff67552ef09afd1f86761371 (diff)
downloadmemory-leaks-2e605b51e6e00ccf2eaf85b3e98423f36823ab99.tar.xz
Discard long-obsolete dotfiles notes
"Some day" has come.
-rw-r--r--guides/setups/dotfiles.md43
1 files changed, 0 insertions, 43 deletions
diff --git a/guides/setups/dotfiles.md b/guides/setups/dotfiles.md
deleted file mode 100644
index eb60806..0000000
--- a/guides/setups/dotfiles.md
+++ /dev/null
@@ -1,43 +0,0 @@
-Some day all of these will live in my dotfiles repository.
-
-Until then…
-
-# Bash
-
-## `~/.bash_aliases`
-
-``` bash
-# Make Bash expand aliases before running sudo.
-alias sudo='sudo '
-```
-
-## `.bashrc`
-
-``` bash
-# Unset the TTY's "stop" char, so that readline receives C-s.
-if tty -s
-then
- stty stop ''
-fi
-```
-
-## `.profile`
-
-``` bash
-export EMAIL=…
-```
-
-# `.gitconfig`
-
-``` ini
-[core]
- quotePath = false
-[user]
- name = … # Not needed if GECOS field is set in /etc/passwd.
- email = … # Not needed if $EMAIL is set.
-[alias]
- root = rev-parse --show-toplevel
- forget = update-index --assume-unchanged
- remember = update-index --no-assume-unchanged
- wut = log --branches --decorate --graph --oneline
-```