Skip to content

Commit

Permalink
docs(zed): init options instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Oct 19, 2023
1 parent 71b20d0 commit a27d3f4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,30 @@ Add the following settings (tested with [Zed Preview v0.106.2](https://zed.dev/r
}
```

If you would like to set initialization options, for example to enable an experimental feature, you can add the following to your settings.json file.

Note the different between snake case and kebab case between the third and sixth lines.

```json
{
"elixir": {
"lsp": "next_ls"
},
"lsp": {
"next-ls": {
"initialization_options": {
"experimental": {
"completions": {
"enable": true
}
}
}
}
}
}
```


</details>
</li>
<li>
Expand Down

0 comments on commit a27d3f4

Please sign in to comment.