2021-07-12 10:47:14 +02:00
|
|
|
# 💾 Persistence
|
|
|
|
|
2021-07-12 10:49:06 +02:00
|
|
|
**Persistence** is a simple lua plugin for automated session management.
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
## ✨ Features
|
|
|
|
|
2023-01-17 10:53:36 +01:00
|
|
|
- automatically saves the active session under `~/.local/state/nvim/sessions` on exit
|
2021-07-12 10:47:14 +02:00
|
|
|
- simple API to restore the current or last session
|
|
|
|
|
|
|
|
## ⚡️ Requirements
|
|
|
|
|
2023-01-06 19:28:37 +01:00
|
|
|
- Neovim >= 0.7.2
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
## 📦 Installation
|
|
|
|
|
|
|
|
Install the plugin with your preferred package manager:
|
|
|
|
|
2024-01-19 15:14:01 +00:00
|
|
|
### [lazy.nvim](https://github.com/folke/lazy.nvim)
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
```lua
|
|
|
|
-- Lua
|
2023-05-22 16:38:25 +02:00
|
|
|
{
|
2021-07-12 10:47:14 +02:00
|
|
|
"folke/persistence.nvim",
|
2021-07-20 09:09:35 +02:00
|
|
|
event = "BufReadPre", -- this will only start session saving when an actual file was opened
|
2023-05-22 16:38:25 +02:00
|
|
|
opts = {
|
|
|
|
-- add any custom options here
|
2021-07-20 09:09:35 +02:00
|
|
|
}
|
2023-05-22 16:38:25 +02:00
|
|
|
}
|
2021-07-20 09:09:35 +02:00
|
|
|
```
|
|
|
|
|
2021-07-12 10:47:14 +02:00
|
|
|
## ⚙️ Configuration
|
|
|
|
|
2021-07-12 10:49:06 +02:00
|
|
|
Persistence comes with the following defaults:
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
```lua
|
|
|
|
{
|
2024-06-11 20:53:08 -07:00
|
|
|
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
|
2024-07-06 22:00:20 +02:00
|
|
|
-- minimum number of file buffers that need to be open to save
|
|
|
|
-- Set to 0 to always save
|
|
|
|
need = 1,
|
|
|
|
branch = true, -- use git branch to save session
|
2021-07-12 10:47:14 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-07-06 21:24:22 +02:00
|
|
|
> [!TIP]
|
|
|
|
> To configure what should be saved in your session, check [:h 'sessionoptions'](https://neovim.io/doc/user/options.html#'sessionoptions')
|
|
|
|
|
2021-07-12 10:47:14 +02:00
|
|
|
## 🚀 Usage
|
|
|
|
|
|
|
|
**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.
|
|
|
|
|
|
|
|
```lua
|
2024-07-06 21:24:22 +02:00
|
|
|
-- load the session for the current directory
|
|
|
|
vim.keymap.set("n", "<leader>qs", function() require("persistence").load() end)
|
|
|
|
|
|
|
|
-- select a session to load
|
|
|
|
vim.keymap.set("n", "<leader>qS", function() require("persistence").select() end)
|
2021-07-12 10:47:14 +02:00
|
|
|
|
2024-07-06 21:24:22 +02:00
|
|
|
-- load the last session
|
|
|
|
vim.keymap.set("n", "<leader>ql", function() require("persistence").load({ last = true }) end)
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
-- stop Persistence => session won't be saved on exit
|
2024-07-06 21:24:22 +02:00
|
|
|
vim.keymap.set("n", "<leader>qd", function() require("persistence").stop() end)
|
2021-07-12 10:47:14 +02:00
|
|
|
```
|
2024-07-06 21:24:22 +02:00
|
|
|
|
|
|
|
## 📅 Events
|
|
|
|
|
|
|
|
- **PersistenceLoadPre**: before loading a session
|
|
|
|
- **PersistenceLoadPost**: after loading a session
|
|
|
|
- **PersistenceSavePre**: before saving a session
|
|
|
|
- **PersistenceSavePost**: after saving a session
|