mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
16 lines
393 B
Lua
16 lines
393 B
Lua
require("autosave").setup({
|
|
enabled = true,
|
|
execution_message = "Autosaved at " .. vim.fn.strftime("%H:%M:%S"),
|
|
events = { "InsertLeave", "TextChanged" },
|
|
conditions = {
|
|
exists = true,
|
|
filename_is_not = {"plugins.lua"},
|
|
filetype_is_not = {},
|
|
modifiable = true,
|
|
},
|
|
write_all_buffers = false,
|
|
on_off_commands = true,
|
|
clean_command_line_interval = 1000,
|
|
debounce_delay = 135,
|
|
})
|