Persistence is a simple lua plugin for automated session management.
- automatically saves the active session under
~/.local/state/nvim/sessionson exit - simple API to restore the current or last session
- Neovim >= 0.7.2
Install the plugin with your preferred package manager:
-- Lua
{
"folke/persistence.nvim",
event="BufReadPre", -- this will only start session saving when an actual file was openedopts= {
-- add any custom options here
}
}Persistence comes with the following defaults:
{
dir=vim.fn.stdpath("state") .."/sessions/", -- directory where session files are saved-- minimum number of file buffers that need to be open to save-- Set to 0 to always saveneed=1,
branch=true, -- use git branch to save session
}Tip
To configure what should be saved in your session, check :h 'sessionoptions'
Persistence works well with plugins like startify or dashboard. It will never restore a session automatically,
but you can of course write an autocmd that does exactly that if you want.
-- load the session for the current directoryvim.keymap.set("n", "<leader>qs", function() require("persistence").load() end)
-- select a session to loadvim.keymap.set("n", "<leader>qS", function() require("persistence").select() end)
-- load the last sessionvim.keymap.set("n", "<leader>ql", function() require("persistence").load({ last=true }) end)
-- stop Persistence => session won't be saved on exitvim.keymap.set("n", "<leader>qd", function() require("persistence").stop() end)- PersistenceLoadPre: before loading a session
- PersistenceLoadPost: after loading a session
- PersistenceSavePre: before saving a session
- PersistenceSavePost: after saving a session