diff options
| author | ryuukk <44361234+ryuukk@users.noreply.github.com> | 2023-07-05 18:59:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-05 18:59:18 +0200 |
| commit | 3d51225d11a454fd2374ab70554dcd9647d9d529 (patch) | |
| tree | 7c1720a243c589e0450a4224980dba7fa2987dcb | |
| parent | 59c3d4a965f39e04a04ed47245d9f579e5af48cf (diff) | |
Improve readme for sublime text
| -rw-r--r-- | README.md | 33 |
1 files changed, 16 insertions, 17 deletions
@@ -127,30 +127,29 @@ Configuration of the LSP: ``` { - "clients": - { - "odin": - { - "command": - [ - "C:/path/to/ols.exe" - ], - "enabled": false, // true for globally-enabled, but not required due to 'Enable In Project' command - "selector": "source.odin", - "settings": { + "clients": { + "odin": { + "command": [ + "/path/to/ols" + ], + "enabled": false, // true for globally-enabled, but not required due to 'Enable In Project' command + "selector": "source.odin", + "initializationOptions": { "collections": [ - { "name": "collection_a", "path": "/path/to/collection_a" }, + { + "name": "collection_a", + "path": "/path/to/collection_a" + }, ], "enable_semantic_tokens": true, "enable_document_symbols": true, "enable_hover": true, - "enable_snippets": true + "enable_snippets": true, + "enable_format": true, } - } - }, - "only_show_lsp_completions": true, + } + } } - ``` ### Vim |