diff options
author | David Runge <dave@sleepmap.de> | 2022-12-09 22:56:17 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-12-09 22:56:17 +0100 |
commit | 196f613a08090031f851d13a40b57dd1cee22ef9 (patch) | |
tree | 1994cef590c813aaab8c182da6022993877beda9 /.config/nvim/UltiSnips/text.snippets | |
parent | f5777782a31900a21e4bf9be4a2dd48c6751c95f (diff) | |
download | dotfiles-196f613a08090031f851d13a40b57dd1cee22ef9.tar.gz dotfiles-196f613a08090031f851d13a40b57dd1cee22ef9.tar.bz2 dotfiles-196f613a08090031f851d13a40b57dd1cee22ef9.tar.xz dotfiles-196f613a08090031f851d13a40b57dd1cee22ef9.zip |
Add ultisnips snippets for neovim
.config/nvim/UltiSnips/:
Add mail and text file ultisnips snippets for the use with neovim.
Diffstat (limited to '.config/nvim/UltiSnips/text.snippets')
-rw-r--r-- | .config/nvim/UltiSnips/text.snippets | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/nvim/UltiSnips/text.snippets b/.config/nvim/UltiSnips/text.snippets new file mode 100644 index 0000000..866b0ac --- /dev/null +++ b/.config/nvim/UltiSnips/text.snippets @@ -0,0 +1,15 @@ +snippet pgp_validation_token "A token text to use for verification" b +I am the holder of the PGP key with the ID +${1:PGP KEY ID} +and the mail address +${2:UID} + +I am clear-signing this token file for the purpose of validating my PGP key ID +and UID for the use in archlinux-keyring. +https://gitlab.archlinux.org/archlinux/archlinux-keyring +The resulting clear-signed token file has no application beyond its intended +scope. + +Verification token: +${3:`tr -dc A-Za-z0-9 </dev/urandom | head -c 13`} +endsnippet |