encrypt-text is a lua plugin for Neovim / LunarVim for encrypting and decrypting text (I have no idea if it does work in pure Neovim).
I have created this plugin (and let it be know this is my the very first plugin) to have functionality similar to QOwnNotes . Which is a feature to encrypt text in md file. So this plugin basically encrypt (and decrypt) the text (starting from the second line). The first line is just the Title
:Encrypt passkey
:Decrypt passkey
Or without passkey
:Encrypt
:Decrypt
In this case you will be asked for encryption's password. The advantage of not giving password is that the password won't be stored in the command history.
The plugin is using inputsecret
you can read about it: :help inputsecret
Ok For now I am new to all of it so I can tell only how to install it using Packer :D
{
"Praczet/encrypt-text.nvim",
config = function()
require("encrypt-text").setup()
end
},
I recommended my second plugin for Tagging notes... Praczet/note-tags.nvim