Update 2025-10-03

This commit is contained in:
2025-10-03 15:04:38 +03:00
parent 8e8c99a6cc
commit 168bd977df
20 changed files with 58 additions and 322 deletions

View File

@@ -24,13 +24,5 @@ return {
desc = "Stop Persistence => session won't be saved on exit",
},
},
opts = {
dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved
options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving
pre_save = nil, -- a function to call before saving the session
post_save = nil, -- a function to call after saving the session
save_empty = false, -- don't save if there are no open file buffers
pre_load = nil, -- a function to call before loading the session
post_load = nil, -- a function to call after loading the session
},
opts = {},
}