Doxly.nvim provides GPG encryption with Base64 encoding. Securely encrypt your text with a password and get a single-line Base64 output that's easy to share and use.
- Neovim 0.8 or higher
- GPG (GNU Privacy Guard)
- Base64 command-line utility
- GPG Passphrase Encrytion
- Single Line GPG Encrypted Base64 Output
- No passphrase cache (Don't forget your passphrase)
Using lazy.nvim
{
"defyus/doxly.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
}
Using packer.nvim
use {
"defyus/doxly.nvim",
config = function()
require("doxly").setup({
-- your configuration comes here
})
end
}
Using vim-plug
Plug 'defyus/doxly.nvim'
Then in your init.lua:
require("doxly").setup({
-- your configuration comes here
})
Doxly.nvim comes with the following defaults:
{
enabled = true,
mappings = {
encrypt = "<leader>en",
decrypt = "<leader>dc"
},
}
-
Encrypt selected text:
:'<,'>DoxlyEnc
- Select text in visual mode
- Run command
- Prompts for password
- Replaces selected text with encrypted, base64-encoded result
-
Decrypt selected text:
:'<,'>DoxlyDec
- Place cursor in buffer containing encrypted text
- Run command
- Prompts for password
- Opens new split with decrypted content
Default mappings (can be disabled or changed in setup):
<leader>en
- Encrypt highlighted text.<leader>dc
- Decrypt highlighted text.
- Passwords are never stored or saved
- Memory is cleared after encryption/decryption
- Temporary files are securely deleted
- Uses GPG's symmetric encryption
- All output is in Base64 format for easy sharing
-
The encrypted output is a single line of Base64 text, making it easy to:
- Copy/paste into emails
- Share through messaging apps
- Store in configuration files
-
When sharing encrypted content:
- Share the encrypted text through any medium
- Share the password through a different, secure channel
- The recipient can use the same plugin to decrypt
-
For Visual Mode:
v
(character-wise)V
(line-wise)ctrl-v
(block-wise) All work with the encryption command
-
If encryption fails:
- Check if GPG is installed:
gpg --version
- Check if base64 is available:
base64 --version
- Ensure you have write permissions in the current directory
- Check if GPG is installed:
-
If decryption fails:
- Verify you're using the correct password
- Ensure the encrypted text is complete and unmodified
- Check that the text is properly base64-encoded
Contributions are welcome! Feel free to open issues and PRs.
MIT
- Initial release
- Base64 single-line output
- Visual mode support
- Secure password handling
LS0tLS1CRUdJTiBQR1AgTUVTU0FHRS0tLS0tCgpqQTBFQ1FNSXMxNkthRVRnbmgvLzBqOEJ0ekYvWC9LZVhyenBRdG9nMHVRc3FnUDZPb0NtazFUUm1zZGo2a0c4CjNHODJieG9IbStNNXRYTVNCa3ZWVUpsQmNlSmlRUTUwVXhuQjFZV2xGRVk9Cj1zK1BKCi0tLS0tRU5EIFBHUCBNRVNTQUdFLS0tLS0K