This commit is contained in:
Hedy Li 2021-06-27 07:59:11 +08:00
parent 19fd06d907
commit 41ebf3054a
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
4 changed files with 10 additions and 3 deletions

View File

@ -1 +1,5 @@
.config/aerc/accounts.conf
.gnupg/*.gpg
.gnupg/gpg.conf
.ssh/key*
.ssh/config

View File

@ -6,7 +6,7 @@
[user]
name = Hedy Li
email = hedy@ttm.sh # email overidden in [include]
email = hedy@tilde.cafe # email overidden in [include]
[alias]
s = status
@ -35,6 +35,9 @@
[pull]
rebase = false
[commit]
gpgsign = true
# sendmail conig in [include]
[include]

Binary file not shown.

4
bin/nv
View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
if ! command -v nvim &> /dev/null
then
vim "$*"
vim $*
else
nvim "$*"
nvim $*
fi