{"id":50875460,"url":"https://github.com/remoteoss/dexter-zed","last_synced_at":"2026-06-15T09:30:58.236Z","repository":{"id":350430506,"uuid":"1206162524","full_name":"remoteoss/dexter-zed","owner":"remoteoss","description":"Dexter LSP Zed extension.","archived":false,"fork":false,"pushed_at":"2026-04-10T09:18:21.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-10T11:25:43.475Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/remoteoss.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-04-09T16:32:18.000Z","updated_at":"2026-04-10T09:18:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/remoteoss/dexter-zed","commit_stats":null,"previous_names":["remoteoss/dexter-zed"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/remoteoss/dexter-zed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remoteoss%2Fdexter-zed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remoteoss%2Fdexter-zed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remoteoss%2Fdexter-zed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remoteoss%2Fdexter-zed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remoteoss","download_url":"https://codeload.github.com/remoteoss/dexter-zed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remoteoss%2Fdexter-zed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34357281,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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-06-15T09:30:57.538Z","updated_at":"2026-06-15T09:30:58.224Z","avatar_url":"https://github.com/remoteoss.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dexter for Zed\n\n[Dexter](https://github.com/remoteoss/dexter) is a lightning fast, full-featured Elixir language server optimized for speed on large codebases. This extension integrates Dexter with [Zed](https://zed.dev), running **alongside** your existing Elixir LSP (ElixirLS, Lexical, Next LS) — use Dexter for fast navigation and your full LSP for diagnostics, completions, and refactoring.\n\n## Features\n\n- Go-to-definition for modules, functions, aliases, imports, and delegates\n- All def forms supported — `def`, `defp`, `defmacro`, `defmacrop`, `defguard`, `defguardp`, `defdelegate`, `defprotocol`, `defimpl`, `defstruct`, `defexception`\n- Monorepo-aware with automatic reindexing on git branch switches\n\nSee the [Dexter repo](https://github.com/remoteoss/dexter) for the full feature list.\n\n## Installation\n\n1. [Install the Dexter binary](https://github.com/remoteoss/dexter#installation)\n2. In Zed, open **Extensions** (`Cmd+Shift+X`) and search for **\"Dexter\"**\n3. Click **Install**\n4. Open any Elixir file — the index builds automatically on first startup\n\nAdd `.dexter.db` to your project's `.gitignore`:\n\n```sh\necho \".dexter.db*\" \u003e\u003e .gitignore\n```\n\n## Configuration\n\nConfigure Dexter in your Zed `settings.json` under the `lsp` key:\n\n```json\n{\n  \"lsp\": {\n    \"dexter\": {\n      \"binary\": {\n        \"path\": \"/path/to/dexter\",\n        \"arguments\": [\"lsp\"]\n      },\n      \"initialization_options\": {\n        \"followDelegates\": true\n      }\n    }\n  }\n}\n```\n\n| Setting | Default | Description |\n|---------|---------|-------------|\n| `binary.path` | `\"dexter\"` | Path to the Dexter binary. Defaults to finding `dexter` on your PATH. If you manage dexter with mise, prefer the shim path (`~/.local/share/mise/shims/dexter`) over a version-specific path. |\n| `binary.arguments` | `[\"lsp\"]` | Arguments passed to the binary. |\n| `initialization_options.followDelegates` | `true` | Follow `defdelegate` to the target function definition. |\n\n## Development\n\nFor contributing to this extension. Requires Rust installed via [rustup](https://rustup.rs/).\n\n```sh\ngit clone https://github.com/remoteoss/dexter-zed.git\ncd dexter-zed\ncargo build --target wasm32-wasip1 --release\n```\n\nThen in Zed: `Cmd+Shift+P` → **\"zed: install dev extension\"** → select the `dexter-zed/` directory.\n\nTo view extension logs, run Zed from the terminal:\n\n```sh\nzed --foreground\n```\n\nOr open the log file via `Cmd+Shift+P` → **\"zed: open log\"**.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremoteoss%2Fdexter-zed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremoteoss%2Fdexter-zed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremoteoss%2Fdexter-zed/lists"}