folke / persistence.nvim

💾 Simple session management for Neovim
Apache License 2.0
577 stars 26 forks source link

bug: wrong default Repro configuration when creating new issue #54

Closed roeybenarieh closed 3 days ago

roeybenarieh commented 2 months ago

Did you check docs and existing issues?

Neovim version (nvim -v)

any

Operating system/version

any

Describe the bug

When opening a new issue, the default configuration in the Repro section is wrong. there should be "opts = {}" just like the documentation shows, otherwise this plugin doesn't work.

Steps To Reproduce

  1. nvim -u repro.lua
  2. try save a session: lua require('persistence').load()

the default configuration provided below

Expected Behavior

Saving sessions with the default configuration should work

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  "folke/persistence.nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here
github-actions[bot] commented 4 days ago

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.