{"id":47779726,"url":"https://github.com/mathiew82/phantom.nvim","last_synced_at":"2026-04-03T13:00:47.920Z","repository":{"id":333936775,"uuid":"1139352332","full_name":"Mathiew82/phantom.nvim","owner":"Mathiew82","description":"A minimal Neovim plugin for working with sessions.","archived":false,"fork":false,"pushed_at":"2026-02-25T17:57:25.000Z","size":24,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-25T20:49:06.519Z","etag":null,"topics":["manager","neovim","neovim-plugin","nvim","sessions"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mathiew82.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-21T21:11:01.000Z","updated_at":"2026-02-25T17:57:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"225f1da1-8e29-40ec-b1d7-263931dc863b","html_url":"https://github.com/Mathiew82/phantom.nvim","commit_stats":null,"previous_names":["mathiew82/phantom.nvim"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mathiew82/phantom.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mathiew82%2Fphantom.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mathiew82%2Fphantom.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mathiew82%2Fphantom.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mathiew82%2Fphantom.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mathiew82","download_url":"https://codeload.github.com/Mathiew82/phantom.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mathiew82%2Fphantom.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31352315,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T08:03:20.796Z","status":"ssl_error","status_checked_at":"2026-04-03T08:00:37.834Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["manager","neovim","neovim-plugin","nvim","sessions"],"created_at":"2026-04-03T13:00:18.991Z","updated_at":"2026-04-03T13:00:47.915Z","avatar_url":"https://github.com/Mathiew82.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 👻 phantom.nvim\n\nMinimal session manager for Neovim with a floating UI.\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/Mathiew82/phantom.nvim/main/screenshot.png\" width=\"500\" alt=\"screenshot\" /\u003e\n\u003c/div\u003e\n\nPhantom lets you manage sessions from a single window:\n\n- List sessions\n- Load sessions (with buffer wipe)\n- Save current session\n- Delete sessions\n\nNo commands to remember.\nOne key. One UI.\n\n## Requirements\n\n- Neovim \\\u003e= 0.11.0\n\n## Features\n\n- Floating window UI\n- Save / load / delete from the same window\n- Buffer wipe before loading (no mixing)\n- Works with lazy.nvim\n- Cross-platform (Linux, macOS, Windows)\n- No dependencies\n\n## Installation (Lazy.nvim / LazyVim)\n\n### lazy.nvim\n\n```lua\n{\n  \"Mathiew82/phantom.nvim\",\n  event = \"VeryLazy\",\n  config = function()\n    require(\"phantom\").setup()\n  end,\n}\n```\n\n### packer.nvim\n\n```lua\nuse {\n  \"Mathiew82/phantom.nvim\",\n  config = function()\n    require(\"phantom\").setup()\n  end\n}\n```\n\n### vim-plug\n\n```vim\nPlug 'Mathiew82/phantom.nvim'\n```\n\n## Usage\n\nOpen session panel:\n\n-   `\u003cleader\u003esls`\n-   `:Phantom`\n\nClose window:\n\n-   `q`\n-   `\u003cEsc\u003e`\n\n## Configuration\n\nDefault config:\n\n``` lua\nrequire(\"phantom\").setup({\n  session_dir = vim.fn.stdpath(\"state\") .. \"/sessions\",\n  notify = true,\n  wipe_on_load = true,\n  keymaps = {\n    list = \"\u003cleader\u003esls\",\n  },\n  float = {\n    border = \"rounded\",\n    width = 60,\n    height = 16,\n    title = \"Phantom Sessions\",\n  },\n})\n```\n\nYou can customize the plugin by passing options to `setup()`:\n\n```lua\nrequire(\"phantom\").setup({\n  -- Directory where session files are stored\n  -- Default: stdpath(\"state\") .. \"/sessions\"\n  session_dir = vim.fn.stdpath(\"state\") .. \"/sessions\",\n\n  -- Show notifications (vim.notify)\n  -- true  = show feedback messages\n  -- false = silent mode\n  notify = true,\n\n  -- Wipe all buffers before loading a session\n  -- true  = clean state (recommended)\n  -- false = keep current buffers (may mix)\n  wipe_on_load = true,\n\n  -- Keymaps\n  keymaps = {\n    -- Open Phantom floating UI\n    list = \"\u003cleader\u003esls\",\n  },\n\n  -- Floating window settings\n  float = {\n    -- Window border style\n    -- Options:\n    -- \"single\", \"double\", \"rounded\", \"solid\", \"shadow\", nil\n    border = \"rounded\",\n\n    -- Floating window width (in columns)\n    width = 60,\n\n    -- Floating window height (in lines)\n    height = 16,\n\n    -- Window title\n    title = \"Phantom Sessions\",\n  },\n})\n```\n\n\u003e [!TIP]\n\u003e For more information about this plugin, see also:\n\u003e ```\n\u003e :help phantom\n\u003e ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathiew82%2Fphantom.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathiew82%2Fphantom.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathiew82%2Fphantom.nvim/lists"}