diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-07-05 20:22:25 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2018-07-05 20:25:53 +0200 |
| commit | c28de7d0cab86d8584377e33ceaa6b039ee16cf5 (patch) | |
| tree | 1ea8ce4b9ba1cdebe012d40f145a36c5f285ba16 /personal/setup/dotfiles.md | |
| parent | ba2a9102678d74323e512562bf4d230cdc6522b2 (diff) | |
| download | memory-leaks-c28de7d0cab86d8584377e33ceaa6b039ee16cf5.tar.xz | |
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.
Diffstat (limited to 'personal/setup/dotfiles.md')
| -rw-r--r-- | personal/setup/dotfiles.md | 22 |
1 files changed, 22 insertions, 0 deletions
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 +``` |
