Compare commits

...

2 Commits

Author SHA1 Message Date
2dc1e241c7
chore: migrate all string values to quoted variants 2024-12-02 19:55:58 +01:00
83277c9841
chore: add .gitignore 2024-11-24 18:08:19 +01:00
2 changed files with 7 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
config/alacritty/current-theme.toml

View File

@ -1,11 +1,11 @@
[user]
email = redacted@example.org
name = redacted
signingkey = redacted
email = "redacted@example.org"
name = "redacted"
signingkey = "redacted"
[commit]
gpgsign = true
[gpg]
program = /usr/bin/gpg
program = "/usr/bin/gpg"
[rebase]
autostash = true
autosquash = true
@ -13,6 +13,6 @@
rebase = true
autostash = true
[format]
pretty = oneline
pretty = "oneline"
[alias]
logv = log --pretty=full --show-signature
logv = "log --pretty=full --show-signature"