Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ A fast, full-featured Elixir LSP optimized for large Elixir codebases.

- [Features](#features)
- [Quick start](#quick-start)
- [Install via mise or asdf](#install-via-mise-or-asdf)
- [Editor setup](#editor-setup)
- [VS Code / Cursor](#vs-code--cursor)
- [Configuration](#configuration)
Expand Down Expand Up @@ -81,23 +80,24 @@ A fast, full-featured Elixir LSP optimized for large Elixir codebases.

## Quick start

### Install via mise or asdf
1. **Install Dexter.** Pick one:

```sh
# 1. Install dependencies (if you don't already have them)
brew install sqlite # or your preferred package manager
```sh
# via mise
mise plugin add dexter https://github.com/remoteoss/dexter.git && mise use -g dexter@latest

# via asdf
asdf plugin add dexter https://github.com/remoteoss/dexter.git && asdf install dexter latest && asdf set --home dexter latest

# via Homebrew
brew install remoteoss/tap/dexter
```

# 2. Install dexter (builds from source if no prebuilt binary is available for your platform)
mise plugin add dexter https://github.com/remoteoss/dexter.git && mise use -g dexter@latest
# or, with asdf:
# asdf plugin add dexter https://github.com/remoteoss/dexter.git && asdf install dexter latest && asdf global dexter latest
Or [build from source](#development-building-from-source).

# 3. Configure your editor (see below)
# The LSP server auto-builds the index on first startup — no need to run dexter init manually.
# You can still run it explicitly if you prefer: dexter init ~/code/my-elixir-project
```
2. **Configure your editor** — see [Editor setup](#editor-setup) below.

You can also [build from source](#development-building-from-source) directly.
3. **Open an Elixir project.** Dexter indexes automatically the first time the LSP starts.

## Editor setup

Expand Down
Loading