{"id":49443113,"url":"https://github.com/zitrocode/spot.nvim","last_synced_at":"2026-04-29T21:03:08.727Z","repository":{"id":354724693,"uuid":"1218434768","full_name":"zitrocode/spot.nvim","owner":"zitrocode","description":"Prefix-driven command palette for Neovim inspired by the VS Code command palette.","archived":false,"fork":false,"pushed_at":"2026-04-29T19:41:06.000Z","size":488,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-29T20:29:27.242Z","etag":null,"topics":["neovim","neovim-lua-plugin","neovim-plugin","neovim-ui"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zitrocode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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-04-22T21:54:45.000Z","updated_at":"2026-04-29T19:45:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zitrocode/spot.nvim","commit_stats":null,"previous_names":["zitrocode/spot.nvim"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zitrocode/spot.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zitrocode%2Fspot.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zitrocode%2Fspot.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zitrocode%2Fspot.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zitrocode%2Fspot.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zitrocode","download_url":"https://codeload.github.com/zitrocode/spot.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zitrocode%2Fspot.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32443576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T20:22:27.477Z","status":"ssl_error","status_checked_at":"2026-04-29T20:22:26.507Z","response_time":110,"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":["neovim","neovim-lua-plugin","neovim-plugin","neovim-ui"],"created_at":"2026-04-29T21:03:05.114Z","updated_at":"2026-04-29T21:03:08.718Z","avatar_url":"https://github.com/zitrocode.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔎 spot.nvim\n\nPrefix-driven command palette for Neovim inspired by the VS Code command palette.\n\nSpot provides a single place to search and execute actions.\nStart typing to search files, or add a prefix to switch context instantly —\nall within the same input.\n\n![demo](./assets/demo.png)\n\n## ✨ Features\n\n- 🔎 Prefix-based source switching\n- 📂 Fast file search powered by `fd`\n- ⚡ Single input workflow\n- 🪶 Lightweight floating picker UI\n- 🎯 Active mode always visible in the title bar\n\n## 🔥 Status\n\n**spot.nvim** is still under active development and should be considered experimental.\n\nThings may change, and bugs are expected.\n\nIf you encounter any issues, please open an issue and include\nas much detail as possible — it helps a lot when tracking down problems.\n\n## ⚡ Requirements\n\n- Neovim ≥ 0.10\n- [`fd`](https://github.com/sharkdp/fd)\n\n## 📦 Installation\n\nInstall using your preferred plugin manager.\n\n### lazy.nvim\n\n```lua\n{\n  \"zitrocode/spot.nvim\",\n  config = function()\n    require(\"spot\").setup()\n  end,\n}\n```\n\n### packer.nvim\n\n```lua\nuse {\n  \"zitrocode/spot.nvim\",\n  config = function()\n    require(\"spot\").setup()\n  end,\n}\n```\n\n## 🚀 Usage\n\n### Commands\n\nSpot provides the following user commands:\n\n| Command       | Description                     |\n| ------------- | ------------------------------- |\n| `:Spot`       | Open the picker                 |\n| `:SpotFocus`  | Focus the picker input          |\n| `:SpotClose`  | Close the picker                |\n| `:SpotToggle` | Toggle the picker open / closed |\n\n### Recommended keymap\n\n```lua\nvim.keymap.set(\n  \"n\",\n  \"\u003cleader\u003e\u003cleader\u003e\",\n  \"\u003ccmd\u003eSpotToggle\u003ccr\u003e\",\n  { desc = \"Toggle Spot\" }\n)\n```\n\n### Basic workflow\n\nTypical usage:\n\n```\n\u003cleader\u003e\u003cleader\u003e → type → confirm\n```\n\nOnce the picker is open:\n\n- Start typing to search files\n- Press `\u003cCR\u003e` to confirm selection\n- Press `\u003cESC\u003e` to normal mode\n- Press `q` to close\n\nPicker keymaps:\n\n| Key     | Action            |\n| ------- | ----------------- |\n| typing  | Filter results    |\n| `j`     | Move down         |\n| `k`     | Move up           |\n| `\u003cCR\u003e`  | Confirm selection |\n| `\u003cEsc\u003e` | Normal mode       |\n| `q`     | Close picker      |\n\n## 🔀 Prefixes\n\nSpot switches sources using simple prefixes.\n\nTyping a prefix immediately changes the active source.\n\n| Prefix | Source     | Status     |\n| ------ | ---------- | ---------- |\n| (none) | `files`    | ✅ working |\n| `\u003e`    | `keymaps`  | 🚧 planned |\n| `:`    | `commands` | 🚧 planned |\n| `#`    | `buffers`  | 🚧 planned |\n| `$`    | `shell`    | 🚧 planned |\n\nThe active source is always visible in the title bar.\n\n## ⚙️ Configuration\n\n**spot.nvim** works out of the box with sensible defaults.\n\nCall `setup()` once:\n\n```lua\nrequire(\"spot\").setup({\n  windows = {\n    width      = 80,\n    max_height = 16,\n  },\n\n  sources = { \"files\" },\n  default_source = \"files\",\n})\n```\n\n## 🤝 Contributing\n\nSpot is under active development, and contributions are welcome.\n\nIf you'd like to get involved, please check the\n[CONTRIBUTING.md](./CONTRIBUTING.md) guide for details.\n\nIdeas for new sources, bug reports, and small improvements\nare always appreciated.\n\n## 📄 License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzitrocode%2Fspot.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzitrocode%2Fspot.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzitrocode%2Fspot.nvim/lists"}