persistence.nvim/doc/persistence.nvim.txt

96 lines
3.2 KiB
Plaintext
Raw Normal View History

2024-07-06 09:48:09 +00:00
*persistence.nvim.txt* For Neovim Last change: 2024 July 06
2023-01-04 19:31:45 +00:00
==============================================================================
Table of Contents *persistence.nvim-table-of-contents*
1. Persistence |persistence.nvim-persistence|
2023-02-28 09:06:44 +00:00
- Features |persistence.nvim-persistence-features|
- Requirements |persistence.nvim-persistence-requirements|
- Installation |persistence.nvim-persistence-installation|
- Configuration |persistence.nvim-persistence-configuration|
- Usage |persistence.nvim-persistence-usage|
2024-07-06 19:24:52 +00:00
- Events |persistence.nvim-persistence-events|
2023-01-04 19:31:45 +00:00
==============================================================================
1. Persistence *persistence.nvim-persistence*
**Persistence** is a simple lua plugin for automated session management.
2023-02-28 09:06:44 +00:00
FEATURES *persistence.nvim-persistence-features*
2023-01-04 19:31:45 +00:00
2023-01-17 09:54:20 +00:00
- automatically saves the active session under `~/.local/state/nvim/sessions` on exit
2023-01-04 19:31:45 +00:00
- simple API to restore the current or last session
2023-02-28 09:06:44 +00:00
REQUIREMENTS *persistence.nvim-persistence-requirements*
2023-01-04 19:31:45 +00:00
2023-01-06 18:29:26 +00:00
- Neovim >= 0.7.2
2023-01-04 19:31:45 +00:00
2023-02-28 09:06:44 +00:00
INSTALLATION *persistence.nvim-persistence-installation*
2023-01-04 19:31:45 +00:00
Install the plugin with your preferred package manager:
2023-02-28 09:06:44 +00:00
2024-01-19 15:14:59 +00:00
LAZY.NVIM ~
2023-01-04 19:31:45 +00:00
>lua
-- Lua
2023-05-22 14:39:07 +00:00
{
2023-01-04 19:31:45 +00:00
"folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened
2023-05-22 14:39:07 +00:00
opts = {
-- add any custom options here
2023-01-04 19:31:45 +00:00
}
2023-05-22 14:39:07 +00:00
}
2023-01-04 19:31:45 +00:00
<
2023-02-28 09:06:44 +00:00
CONFIGURATION *persistence.nvim-persistence-configuration*
2023-01-04 19:31:45 +00:00
Persistence comes with the following defaults:
>lua
{
dir = vim.fn.stdpath("state") .. "/sessions/", -- directory where session files are saved
2023-10-13 05:57:50 +00:00
save_empty = false, -- don't save if there are no open file buffers
2023-01-04 19:31:45 +00:00
}
<
2024-07-06 19:24:52 +00:00
[!TIP] To configure what should be saved in your session, check |:h
'sessionoptions'|
2023-02-28 09:06:44 +00:00
USAGE *persistence.nvim-persistence-usage*
2023-01-04 19:31:45 +00:00
**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 19:24:52 +00: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)
2023-01-04 19:31:45 +00:00
2024-07-06 19:24:52 +00:00
-- load the last session
vim.keymap.set("n", "<leader>ql", function() require("persistence").load({ last = true }) end)
2023-01-04 19:31:45 +00:00
-- stop Persistence => session won't be saved on exit
2024-07-06 19:24:52 +00:00
vim.keymap.set("n", "<leader>qd", function() require("persistence").stop() end)
2023-01-04 19:31:45 +00:00
<
2024-07-06 19:24:52 +00:00
EVENTS *persistence.nvim-persistence-events*
- **PersistenceLoadPre**before loading a session
- **PersistenceLoadPost**after loading a session
- **PersistenceSavePre**before saving a session
- **PersistenceSavePost**after saving a session
2023-01-04 19:31:45 +00:00
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl: