Last Updated: September 09, 2019
·
2.593K
· hasenj

vim -x as a password manager

Need a command line password manager?

vim -x ~/.passwords

Learned this from a comment on this blog post:

http://www.xaprb.com/blog/2011/06/11/vim-the-ultimate-command-line-password-manager/

The post originally proposed using vim in combination with a pgp plugin, but someone in the comments mentioned that vim has builtin encryption capabilities with -x

1 Response
Add your response

By default Vim uses cryptmethod=zip which is not really secure. If you actually want to use Vim as your password manager, this is an essential setting in your .vimrc:

set cryptmethod=blowfish
over 1 year ago ·