1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-04 15:10:27 +00:00
dotfiles/.config/nvim/lua/user/autosave.lua

13 lines
181 B
Lua
Raw Normal View History

2022-10-08 10:44:11 +00:00
local status_ok, autosave = pcall(require, "auto-save")
2022-10-01 11:46:18 +00:00
if not status_ok then
return
end
autosave.setup({
execution_message = {
message = function()
return ""
end,
},
})