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
|
|
|
|
{
|
2023-01-05 15:38:06 +08:00
|
|
|
dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved
|
2021-07-12 10:47:14 +02:00
|
|
|
options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving
|
2023-02-28 09:05:58 +00:00
|
|
|
pre_save = nil, -- a function to call before saving the session
|
2023-10-13 07:57:09 +02:00
|
|
|
save_empty = false, -- don't save if there are no open file buffers
|
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
|
|
|
|
-- restore the session for the current directory
|
2022-09-03 14:36:12 +02:00
|
|
|
vim.api.nvim_set_keymap("n", "<leader>qs", [[<cmd>lua require("persistence").load()<cr>]], {})
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
-- restore the last session
|
2022-09-03 14:36:12 +02:00
|
|
|
vim.api.nvim_set_keymap("n", "<leader>ql", [[<cmd>lua require("persistence").load({ last = true })<cr>]], {})
|
2021-07-12 10:47:14 +02:00
|
|
|
|
|
|
|
-- stop Persistence => session won't be saved on exit
|
2022-09-03 14:36:12 +02:00
|
|
|
vim.api.nvim_set_keymap("n", "<leader>qd", [[<cmd>lua require("persistence").stop()<cr>]], {})
|
2021-07-12 10:47:14 +02:00
|
|
|
```
|