47 lines
1.8 KiB
Lua
47 lines
1.8 KiB
Lua
local M = {}
|
|
|
|
local defaults = {
|
|
log_level = "ERROR", -- One of "TRACE", "DEBUG", "ERROR"
|
|
save_dir = vim.fn.expand(vim.fn.stdpath("data") .. "/sessions/"), -- directory where session files are saved
|
|
silent = false, -- silent nvim message when sourcing session file
|
|
|
|
use_git_branch = false, -- create session files based on the branch of a git enabled repository
|
|
branch_separator = "@@", -- string used to separate session directory name from branch name
|
|
default_branch = "main", -- the branch to load if a session file is not found for the current branch
|
|
|
|
autosave = true, -- automatically save session files when exiting Neovim
|
|
should_autosave = nil, -- function to determine if a session should be autosaved (resolve to a boolean)
|
|
|
|
autoload = false, -- automatically load the session for the cwd on Neovim startup
|
|
on_autoload_no_session = nil, -- function to run when `autoload = true` but there is no session to load
|
|
|
|
follow_cwd = true, -- change session file name with changes in current working directory
|
|
allowed_dirs = nil, -- table of dirs that the plugin will auto-save and auto-load from
|
|
ignored_dirs = nil, -- table of dirs that are ignored for auto-saving and auto-loading
|
|
ignored_branches = nil, -- table of branch patterns that are ignored for auto-saving and auto-loading
|
|
|
|
telescope = {
|
|
reset_prompt = true, -- Reset prompt after a telescope action?
|
|
--TODO: We should add a deprecation notice for the old API here
|
|
mappings = {
|
|
change_branch = "<c-b>",
|
|
copy_session = "<c-c>",
|
|
delete_session = "<c-d>",
|
|
},
|
|
icons = { -- icons displayed in the picker
|
|
branch = " ",
|
|
dir = " ",
|
|
selected = " ",
|
|
},
|
|
},
|
|
}
|
|
|
|
M.options = {}
|
|
|
|
function M.setup(opts)
|
|
M.options = vim.tbl_deep_extend("force", defaults, opts or {})
|
|
vim.fn.mkdir(M.options.save_dir, "p")
|
|
end
|
|
|
|
return M
|