persistence.nvim/README.md

58 lines
1.6 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:
2023-05-22 16:38:25 +02:00
### [folke](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.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
pre_save = nil, -- a function to call before saving the session
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
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
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
vim.api.nvim_set_keymap("n", "<leader>qd", [[<cmd>lua require("persistence").stop()<cr>]], {})
2021-07-12 10:47:14 +02:00
```