mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-12 21:51:13 +00:00
13 lines
180 B
Lua
13 lines
180 B
Lua
|
local status_ok, autosave = pcall(require, "autosave")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
autosave.setup({
|
||
|
execution_message = {
|
||
|
message = function()
|
||
|
return ""
|
||
|
end,
|
||
|
},
|
||
|
})
|