persisted.nvim icon indicating copy to clipboard operation
persisted.nvim copied to clipboard

💾 Simple session management for Neovim with git branching, autoloading and Telescope support

Results 2 persisted.nvim issues
Sort by recently updated
recently updated
newest added

Below are a collection of _callbacks_ which you may find useful.

### Your `minimal.lua` config ```lua local root = "/tmp/persisted" -- Set stdpaths to use root dir for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root...

bug