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

Project history is gone

Open alloc33 opened this issue 7 months ago • 0 comments

I wonder why did all project from project history are gone? I had ~50 projects in my list and today it shows me only couple of them (latest which I opened). Here is my config:

local M = {}

function M.setup()
  local status_ok, project = pcall(require, "project_nvim")
  if not status_ok then
    return
  end

  project.setup({
    -- base_dirs = {
    --   { path = "~/mnt-ubuntu-vm-local/root/" }
    -- }
    active = true,
    manual_mode = false,
    detection_methods = { "pattern" },
    patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", "pom.xml" },
    ignore_lsp = {},
    exclude_dirs = {
      "/Users/nshv/Repos/sidebuffer_nvim_notes/"
    },
    show_hidden = true,
    silent_chdir = true,
    scope_chdir = "global",
  })
end

function M.get_plugin_config()
  return {
    {
      "ahmedkhalf/project.nvim",
      config = M.setup,
      event = "VimEnter",
      cmd = "Telescope projects",
    }
  }
end

return M
:lua print(require("project_nvim.utils.path").datapath) -- /Users/nshv/.local/share/nvim

alloc33 avatar Mar 08 '25 04:03 alloc33