{"id":48821515,"url":"https://github.com/timothyckl/tau.nvim","last_synced_at":"2026-04-14T15:02:15.365Z","repository":{"id":350527054,"uuid":"1183511099","full_name":"timothyckl/tau.nvim","owner":"timothyckl","description":"LLM-powered inline code edits for Neovim.","archived":false,"fork":false,"pushed_at":"2026-04-10T18:34:29.000Z","size":27,"stargazers_count":1,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-10T20:16:36.763Z","etag":null,"topics":["ai","developer-tool","llm","neovim","neovim-plugin","vim"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/timothyckl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-03-16T17:20:07.000Z","updated_at":"2026-04-10T18:18:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/timothyckl/tau.nvim","commit_stats":null,"previous_names":["timothyckl/tau.nvim"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/timothyckl/tau.nvim","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothyckl%2Ftau.nvim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothyckl%2Ftau.nvim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothyckl%2Ftau.nvim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothyckl%2Ftau.nvim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timothyckl","download_url":"https://codeload.github.com/timothyckl/tau.nvim/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timothyckl%2Ftau.nvim/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31801629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["ai","developer-tool","llm","neovim","neovim-plugin","vim"],"created_at":"2026-04-14T15:02:14.542Z","updated_at":"2026-04-14T15:02:15.358Z","avatar_url":"https://github.com/timothyckl.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tau.nvim\n\nThe simplest way to do inline code edits with an LLM in Neovim.\n\n## Requirements\n\n- Neovim 0.10+\n- [Bun](https://bun.sh)\n- An OpenAI-compatible API endpoint\n\n## Installation\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  \"timothyckl/tau.nvim\",\n  lazy = false,\n  build = \"cd cli \u0026\u0026 bun build --compile src/index.ts --outfile tau\",\n  config = function()\n    require(\"tau\").setup({\n      api_url = \"http://localhost:1234/v1\",\n      api_key = \"your-api-key\",\n      model = \"your-model-name\",\n    })\n  end,\n  keys = {\n    { \"\u003cleader\u003et\", \":Tau\u003cCR\u003e\", mode = \"v\", desc = \"Tau: LLM edit selection\" },\n  },\n}\n```\n\n\u003e The `build` step compiles the CLI binary automatically on install and update.\n\n## Setup\n\n`require(\"tau\").setup()` accepts the following options:\n\n| Option | Type | Required | Description |\n|---|---|---|---|\n| `api_url` | string | yes | Base URL of your OpenAI-compatible API |\n| `api_key` | string | yes | API key |\n| `model` | string | no | Model name (default: `gpt-4o`) |\n| `debug` | boolean | no | Enable diagnostic logging to `~/.local/state/tau/diag.log` |\n| `timeout_ms` | number | no | Request timeout in milliseconds (default: `60000`) |\n\n## Usage\n\n1. Visually select code in Neovim\n2. Run `:Tau \u003cinstruction\u003e` or press your keymap (e.g. `\u003cleader\u003et`)\n3. Type your instruction (e.g. \"add error handling\", \"convert to async\")\n4. The selection is replaced with the LLM's output\n\n## Provider examples\n\n### Ollama\n\n```lua\nrequire(\"tau\").setup({\n  api_url = \"http://localhost:11434/v1\",\n  api_key = \"ollama\",\n  model = \"qwen2.5-coder:7b\",\n})\n```\n\n### OpenAI\n\n```lua\nrequire(\"tau\").setup({\n  api_url = \"https://api.openai.com/v1\",\n  api_key = os.getenv(\"OPENAI_API_KEY\"),\n  model = \"gpt-4o\",\n})\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimothyckl%2Ftau.nvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimothyckl%2Ftau.nvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimothyckl%2Ftau.nvim/lists"}