diff --git a/doc/persistence.nvim.txt b/doc/persistence.nvim.txt index b900b2d..c0bd31e 100644 --- a/doc/persistence.nvim.txt +++ b/doc/persistence.nvim.txt @@ -1,4 +1,4 @@ -*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 04 +*persistence.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 January 05 ============================================================================== Table of Contents *persistence.nvim-table-of-contents* @@ -69,7 +69,7 @@ Persistence comes with the following defaults: >lua { - dir = vim.fn.expand(vim.fn.stdpath("config") .. "/sessions/"), -- directory where session files are saved + dir = vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/"), -- directory where session files are saved options = { "buffers", "curdir", "tabpages", "winsize" }, -- sessionoptions used for saving } <