summaryrefslogtreecommitdiff
path: root/guides/setups/dotfiles.md
diff options
context:
space:
mode:
Diffstat (limited to 'guides/setups/dotfiles.md')
-rw-r--r--guides/setups/dotfiles.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/guides/setups/dotfiles.md b/guides/setups/dotfiles.md
index 66e2387..7a30bcb 100644
--- a/guides/setups/dotfiles.md
+++ b/guides/setups/dotfiles.md
@@ -2,13 +2,25 @@ Some day all of these will live in my dotfiles repository.
Until then…
-# `~/.bash_aliases`
+# 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
+```
+
# `.gitconfig`
``` ini