{"id":46527323,"url":"https://github.com/taigrr/blast.nvim","last_synced_at":"2026-04-03T00:42:12.081Z","repository":{"id":339692844,"uuid":"1154773329","full_name":"taigrr/blast.nvim","owner":"taigrr","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-02T15:36:07.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-02T18:51:48.300Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"0bsd","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taigrr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"taigrr"}},"created_at":"2026-02-10T19:02:06.000Z","updated_at":"2026-03-02T15:36:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/taigrr/blast.nvim","commit_stats":null,"previous_names":["taigrr/blast.nvim"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/taigrr/blast.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fblast.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fblast.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fblast.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fblast.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taigrr","download_url":"https://codeload.github.com/taigrr/blast.nvim/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taigrr%2Fblast.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30244538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:58:18.660Z","status":"online","status_checked_at":"2026-03-08T02:00:06.215Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-03-06T21:00:28.269Z","updated_at":"2026-03-08T04:00:35.628Z","avatar_url":"https://github.com/taigrr.png","language":"Lua","readme":"# blast.nvim\n\nNeovim plugin for [NvimBlast](https://nvimblast.com) activity tracking.\n\n## Requirements\n\n- Neovim 0.9+\n- [glaze.nvim](https://github.com/taigrr/glaze.nvim) manages the `blastd` binary automatically (which itself depends on `go`)\n\n## Installation\n\n### lazy.nvim\n\n```lua\n{\n  \"taigrr/blast.nvim\",\n  dependencies = { \"taigrr/glaze.nvim\" },\n  event = \"VeryLazy\",\n  opts = {\n    -- socket_path = vim.fn.expand(\"~/.local/share/blastd/blastd.sock\"),\n    -- idle_timeout = 120,\n    -- debug = false,\n  },\n}\n```\n\n### rocks.nvim\n\n```vim\n:Rocks install blast.nvim\n```\n\nAfter installing, run `:GlazeInstall blastd` to install the daemon (or it will be installed automatically on first use if glaze.nvim is configured with `auto_install = true`).\n\nAlternatively, install blastd manually:\n\n```sh\ngo install github.com/taigrr/blastd@latest\n```\n\n## Commands\n\n- `:BlastPing` - Ping the blastd daemon\n- `:BlastStatus` - Show current tracking status\n- `:BlastSync` - Trigger immediate sync to Blast server\n- `:BlastStop` - Stop activity tracking\n- `:BlastStart` - Resume activity tracking\n\n## Project Configuration\n\nCreate a `.blast.toml` anywhere in your project tree:\n\n```toml\n# Override the project name (default: git directory name)\nname = \"my-project\"\n\n# Mark as private — activity is still synced, but project name and git branch/remote\n# are replaced with \"private\" so the server only sees time, filetype, and metrics\nprivate = true\n```\n\nThe file is discovered by walking up from the current buffer's directory to the nearest git root. Both fields are optional.\n\n### Monorepos\n\nIn a monorepo, you can place `.blast.toml` in any subdirectory to give it a distinct project name or mark it as private.\nThe closest `.blast.toml` between the file and the git root wins:\n\n```\nmonorepo/               ← git root\n├── .blast.toml         ← name = \"monorepo\" (fallback)\n├── apps/\n│   ├── web/\n│   │   └── .blast.toml ← name = \"web\"\n│   └── api/\n│       └── .blast.toml ← name = \"api\", private = true\n└── packages/\n    └── shared/         ← inherits \"monorepo\" from root .blast.toml\n```\n\n## Private mode\n\nFor global privacy (all projects), set `metrics_only = true` in your [blastd config](https://github.com/taigrr/blastd#privacy) or `BLAST_METRICS_ONLY=true`.\n\n## How It Works\n\n1. The plugin tracks buffer activity and text changes\n2. Sessions are created per-project (detected via git or `.blast.toml`)\n3. Activity is sent to the local blastd daemon via Unix socket\n4. blastd syncs to the Blast server every 10 minutes\n\n### Tracked Metrics\n\n- Time spent per project\n- Filetype breakdown\n- Actions per minute (commands, edits)\n- Words per minute\n\n## Health Check\n\nRun `:checkhealth blast` to verify your setup:\n\n- Neovim version\n- glaze.nvim availability\n- blastd binary installation\n- Socket connection status\n\n## Related Projects\n\n- [blastd](https://github.com/taigrr/blastd) - Local daemon\n- [glaze.nvim](https://github.com/taigrr/glaze.nvim) - Go binary manager for Neovim\n","funding_links":["https://github.com/sponsors/taigrr"],"categories":["Workflow"],"sub_categories":["Stats Tracking"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Fblast.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaigrr%2Fblast.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaigrr%2Fblast.nvim/lists"}