2021-07-12 10:47:09 +02:00
|
|
|
local M = {}
|
|
|
|
|
2024-07-06 21:22:40 +02:00
|
|
|
---@class Persistence.Config
|
2021-07-12 10:47:09 +02:00
|
|
|
local defaults = {
|
2024-06-11 20:53:08 -07:00
|
|
|
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
|
2024-07-06 21:41:58 +02:00
|
|
|
-- 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
|
|
|
}
|
|
|
|
|
2024-07-06 21:22:40 +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
|