data cleanup

This commit is contained in:
2026-04-20 05:34:14 +02:00
parent 7eb1b16b70
commit 24efbfeb3b
7 changed files with 23 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
---
title: "GPG Password Entry"
tags: [ "vim", "secrets", "TUI" ]
requires: [ "GPG Basics", "vim basics" ]
requires: [ "gpg", "vim" ]
---
@@ -11,7 +11,7 @@ Check your current gpg-agent configuration:
gpgconf --list-options gpg-agent
```
Create file, if it doesnt exit `~/.gnupg/gpg-agent.conf`:
Create file, if it doesn't exit `~/.gnupg/gpg-agent.conf`:
```
# Force terminal prompts for passwords
@@ -22,6 +22,7 @@ pinentry-program /usr/bin/pinentry-tty
```
Then restart gpg-agent:
```sh
gpg-connect-agent reloadagent /bye
```

View File

@@ -1,12 +1,11 @@
---
title: "gpg with vim"
tags: [ "vim", "data", "GPG" ]
requires: [ "gpg", "vim" ]
title: "Edit gpg encrypted files easily"
tags: [ "vim", "data", "gpg" ]
requires: [ "gpg", "vim", "comfy" ]
---
The `vim-gnupg` plugin lets vim edit gpg-encrypted files as if they were unencrypted.
The `vim-gnupg` plug-in lets vim edit gpg-encrypted files as if they were unencrypted.
It's probably in your package manager.
If not, you'll need to endure the faff of following the [instructions](http://www.vim.org/scripts/script.php?script_id=3645).