8 lines
213 B
Lua
8 lines
213 B
Lua
-- Make editing passwords safer
|
|
--- @type LazyPluginSpec
|
|
return {
|
|
"https://git.zx2c4.com/password-store",
|
|
config = function(plugin)
|
|
vim.opt.rtp:append(plugin.dir .. "contrib/vim/redact_pass.vim")
|
|
end,
|
|
}
|