persistence.nvim/doc/persistence.nvim.txt

86 lines
3.1 KiB
Plaintext
Raw Normal View History

2024-07-05 13:46:37 +00:00
*persistence.nvim.txt* For Neovim Last change: 2024 July 05
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|
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-01-04 19:31:45 +00:00
options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving
pre_save = nil, -- a function to call before saving the session
2024-05-16 17:03:50 +00:00
post_save = nil, -- a function to call after saving the session
2023-10-13 05:57:50 +00:00
save_empty = false, -- don't save if there are no open file buffers
2024-05-16 17:03:50 +00:00
pre_load = nil, -- a function to call before loading the session
post_load = nil, -- a function to call after loading the session
2023-01-04 19:31:45 +00:00
}
<
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
-- restore the session for the current directory
vim.api.nvim_set_keymap("n", "<leader>qs", [[<cmd>lua require("persistence").load()<cr>]], {})
-- restore the last session
vim.api.nvim_set_keymap("n", "<leader>ql", [[<cmd>lua require("persistence").load({ last = true })<cr>]], {})
-- stop Persistence => session won't be saved on exit
vim.api.nvim_set_keymap("n", "<leader>qd", [[<cmd>lua require("persistence").stop()<cr>]], {})
<
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl: