OCamllsp can be configured via Zed settings.json.
For instance, all inlay hints can be enabled using the following:
"lsp": {
"ocamllsp": {
"settings": {
"inlayHints": {
"hintFunctionParams": true,
"hintPatternVariables": true,
"hintLetBindings": true
}
}
}
}The configuration options available are documented here.
To develop this extension, see the Developing Extensions section of the Zed docs.