diff --git a/README.md b/README.md index 0fc6e75..76ba1bd 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,20 @@ If you wish to specify a custom path to your language server, you can do so via ```json { "lsp": { - "powershell-es": { - "binary": { - "path": "" - } - } + "powershell-es": { + "binary": { + "path": "pwsh.exe", + "arguments": [ + "-NoLogo", + "-NoProfile", + "-Command", + "path\\to\\PowerShellEditorServices\\Start-EditorServices.ps1", + "-Stdio", + "-SessionDetailsPath", + "path\\to\\PowerShellEditorServices\\powershell-es.session.json", + ], + }, + }, } } ```