# 💾 Persistence **Persistence** is a simple lua plugin for automated session management. ## ✨ Features - automatically saves the active session under `~/.local/state/nvim/sessions` on exit - simple API to restore the current or last session ## ⚡️ Requirements - Neovim >= 0.7.2 ## 📦 Installation Install the plugin with your preferred package manager: ### [packer](https://github.com/wbthomason/packer.nvim) ```lua -- Lua use({ "folke/persistence.nvim", event = "BufReadPre", -- this will only start session saving when an actual file was opened module = "persistence", config = function() require("persistence").setup() end, }) ``` ### [vim-plug](https://github.com/junegunn/vim-plug) ```vim " Vim Script Plug 'folke/persistence.nvim' lua << EOF require("persistence").setup { -- your configuration comes here -- or leave it empty to use the default settings -- refer to the configuration section below } EOF ``` ## ⚙️ Configuration Persistence comes with the following defaults: ```lua { dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving pre_save = nil, -- a function to call before saving the session } ``` ## 🚀 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", "qs", [[lua require("persistence").load()]], {}) -- restore the last session vim.api.nvim_set_keymap("n", "ql", [[lua require("persistence").load({ last = true })]], {}) -- stop Persistence => session won't be saved on exit vim.api.nvim_set_keymap("n", "qd", [[lua require("persistence").stop()]], {}) ```