From c28de7d0cab86d8584377e33ceaa6b039ee16cf5 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Thu, 5 Jul 2018 20:22:25 +0200 Subject: Add notes on my laptop setup Sneak-remove my itch to disable auto-fill for Markdown titles, since I'm not sure any mode ever does things like that. While this does not mean that it could not be done, it does make the endeavor somewhat non-idiomatic. --- personal/setup/dotfiles.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 personal/setup/dotfiles.md (limited to 'personal/setup/dotfiles.md') diff --git a/personal/setup/dotfiles.md b/personal/setup/dotfiles.md new file mode 100644 index 0000000..c51f4cb --- /dev/null +++ b/personal/setup/dotfiles.md @@ -0,0 +1,22 @@ +Some day all of these will live in my dotfiles repository. + +Until then… + +# `~/.bash_aliases` + +``` bash +# Make Bash expand aliases before running sudo. +alias sudo='sudo ' +``` + +# `.gitconfig` + +``` ini +[user] + name = … + email = … +[alias] + root = rev-parse --show-toplevel + forget = update-index --assume-unchanged + remember = update-index --no-assume-unchanged +``` -- cgit v1.2.3