Compare commits

..

No commits in common. "f303e2b05eff1274ebe1978db49feb65f22221bb" and "53dda62f99c9d54dc87a846e5c0b0c815e052199" have entirely different histories.

3 changed files with 4 additions and 12 deletions

View file

@ -9,7 +9,7 @@
# Logo key. Use Mod1 for Alt. # Logo key. Use Mod1 for Alt.
set $wm_mod Mod4+Control set $wm_mod Mod4+Control
set $launch Mod4+Alt set $launch Mod4+Alt
# WASD direction keys, video game style # Home row direction keys, like vim
set $left a set $left a
set $down s set $down s
set $up w set $up w

View file

@ -1,15 +1,12 @@
[init] [init]
defaultBranch = trunk defaultBranch = trunk
[alias] [alias]
# keep-sorted start co = checkout
br = branch br = branch
ci = commit ci = commit
co = checkout
disclaim = !git-disclaim
resign = !git-resign
sign = commit --amend --no-edit --gpg-sign
st = status st = status
# keep-sorted end sign = commit --amend --no-edit --gpg-sign
resign = !git-resign
[remote] [remote]
pushDefault = . pushDefault = .
[git-sync] [git-sync]

View file

@ -1,5 +0,0 @@
#!/bin/sh
author_name="$(git show --no-patch --format='%an' HEAD)"
author_email="$(git show --no-patch --format='%ae' HEAD)"
GIT_AUTHOR_NAME="${author_name}" GIT_AUTHOR_EMAIL="${author_email}" GIT_COMMITTER_NAME="${author_name}" GIT_COMMITTER_EMAIL="${author_email}" git commit --amend --author "${author_name} <${author_email}>" --no-edit --no-verify