aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorryuukk <44361234+ryuukk@users.noreply.github.com>2023-07-05 18:59:18 +0200
committerGitHub <noreply@github.com>2023-07-05 18:59:18 +0200
commit3d51225d11a454fd2374ab70554dcd9647d9d529 (patch)
tree7c1720a243c589e0450a4224980dba7fa2987dcb /README.md
parent59c3d4a965f39e04a04ed47245d9f579e5af48cf (diff)
Improve readme for sublime text
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 16 insertions, 17 deletions
diff --git a/README.md b/README.md
index cdf3c50..e45148a 100644
--- a/README.md
+++ b/README.md
@@ -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