Automated update

This commit is contained in:
klein panic
2025-02-28 22:00:04 -05:00
parent 2ea60ef27a
commit 3cd4fcf4ef
11 changed files with 260 additions and 8 deletions

View File

@@ -12,3 +12,17 @@ require('vimwiki')
-- Load Compilation Integrations:
require('compilation').setup()
-- Load and setup Encrypted File Handler.
require("encrypted_file_handler").setup({
prompt_method = "vim_ui", -- change to "dmenu" or "terminal" if desired
decryption_methods = {
-- Optionally, define custom methods for non-standard extensions:
-- vault = function(pass, orig, tmp)
-- return string.format("my_custom_decrypt -i %s -o %s -p %s", vim.fn.shellescape(orig), vim.fn.shellescape(tmp), vim.fn.shellescape(pass))
-- end,
},
cleanup_timeout = 0, -- set a timeout (in seconds) if you prefer auto-deletion after some time
debug = false,
})