commit 2e605b51e6e00ccf2eaf85b3e98423f36823ab99 parent 8fb1c19e7c3a654eff67552ef09afd1f86761371 Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Wed, 15 Jan 2025 00:23:00 +0100 Discard long-obsolete dotfiles notes "Some day" has come. Diffstat:
| D | guides/setups/dotfiles.md | | | 43 | ------------------------------------------- |
1 file changed, 0 insertions(+), 43 deletions(-)
diff --git a/guides/setups/dotfiles.md b/guides/setups/dotfiles.md @@ -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 -```