21 lines
499 B
Lua
Raw Normal View History

2021-07-12 10:47:09 +02:00
local M = {}
---@class Persistence.Config
2021-07-12 10:47:09 +02:00
local defaults = {
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
-- minimum number of file buffers that need to be open to save
-- Set to 0 to always save
need = 1,
2024-07-06 22:00:20 +02:00
branch = true, -- use git branch to save session
2021-07-12 10:47:09 +02:00
}
---@type Persistence.Config
2021-07-12 10:47:09 +02:00
M.options = {}
function M.setup(opts)
M.options = vim.tbl_deep_extend("force", {}, defaults, opts or {})
vim.fn.mkdir(M.options.dir, "p")
end
return M