From 2e605b51e6e00ccf2eaf85b3e98423f36823ab99 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Wed, 15 Jan 2025 00:23:00 +0100 Subject: Discard long-obsolete dotfiles notes "Some day" has come. --- guides/setups/dotfiles.md | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 guides/setups/dotfiles.md (limited to 'guides/setups') 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 -``` -- cgit v1.2.3