Suppose you have weird taste and you absolutely want:
- your visual selection to always have a green background and black foreground,
- your active statusline to always have a white background and red foreground,
- your very own deep blue background.
| .theme--dark { | |
| --color-main-background: rgb(13, 17, 23); | |
| --color-main-background-translucent: rgb(13, 17, 23); | |
| --color-background-dark: rgb(13, 17, 23); | |
| --color-background-hover: #21262c; | |
| --color-primary-light: #21262c; | |
| --color-border: #21262d; | |
| --input-form-background: #010409; | |
| --btn-primary: #238636; | |
| --btn-primary-hover: #1b6e2b; |
| For troubleshooting, two things to first try: | |
| run `git config --global gpg.program gpg2`, to make sure git uses gpg2 and not gpg | |
| run `echo "test" | gpg2 --clearsign`, to make sure gpg2 itself is working | |
| If that all looks all right, one next thing to try: | |
| run `brew install pinentry` to ensure you have a good tool installed for passphrase entry | |
| If after that install and you re-try git commit and still get the "failed to sign the data" error: | |
| run `gpgconf --kill gpg-agent` to kill any running agent that might be hung |
Suppose you have weird taste and you absolutely want: