A Neovim Linux plugin to easy encrypt and decrypt your secured directory, based on ccrypt
The plugin is tested with ccrypt 1.11 version
I used it already for several months as a password manager without major issues.
But still be careful, you can lose your data always make a backup.
All files into dir_pattern
and its subfolders will be encrypted by ccrypt after first write operation by password.
You must use the same password for whole dir_pattern
directory.
Decrypted text keeps only in Neovim buffer
- Installed ccrypt utility
sudo apt install ccrypt
- find - Usually it is automatically installed with your Linux distro
Plug 'kurotych/ccryptor.nvim'
lua <<EOF
require("ccryptor").setup({
dir_path = '/home/kurotych/secrets/'
})
EOF
setting | description | example |
---|---|---|
dir_path | directory path that will be ecnrypted (with its subfolders) | /home/kurotych/secrets/ |