summaryrefslogtreecommitdiff
path: root/guides/setups
diff options
context:
space:
mode:
Diffstat (limited to 'guides/setups')
-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
-```