19 lines
426 B
Lua
19 lines
426 B
Lua
local M = {}
|
|
|
|
function M.config()
|
|
local status_ok, session_manager = pcall(require, "session_manager")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
local sm_config = require'session_manager.config'
|
|
|
|
-- this plugin saves sessions for the working directory automatically
|
|
session_manager.setup({
|
|
autoload_mode = sm_config.AutoloadMode.Disabled, -- do not auto-load the last session at startup
|
|
})
|
|
end
|
|
|
|
return M
|
|
|