mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-09 15:01:13 +00:00
9 lines
166 B
Lua
9 lines
166 B
Lua
local status_ok, session_manager = pcall(require, "session_manager")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
session_manager.setup({
|
|
autosave_only_in_session = false,
|
|
})
|