persistence.nvim/README.md

70 lines
1.9 KiB
Markdown
Raw Normal View History

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
- 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
- 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",
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
}
2023-05-22 16:38:25 +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
{
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
save_empty = false, -- don't save if there are no open file buffers
2021-07-12 10:47:14 +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
-- 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
-- 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
vim.keymap.set("n", "<leader>qd", function() require("persistence").stop() end)
2021-07-12 10:47:14 +02:00
```
## 📅 Events
- **PersistenceLoadPre**: before loading a session
- **PersistenceLoadPost**: after loading a session
- **PersistenceSavePre**: before saving a session
- **PersistenceSavePost**: after saving a session