-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopencode.json
More file actions
93 lines (93 loc) · 2.14 KB
/
Copy pathopencode.json
File metadata and controls
93 lines (93 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"$schema": "https://opencode.ai/config.json",
"lsp": {
"bash": {
"command": ["bash-language-server", "start"]
},
"clangd": {
"command": ["clangd", "--background-index", "--clang-tidy"]
},
"clojure-lsp": {
"command": ["clojure-lsp", "listen"]
},
"eslint": {
"command": ["vscode-eslint-language-server", "--stdio"]
},
"fennel-ls": {
"command": ["fennel-ls", "--server"],
"extensions": [".fnl"]
},
"fish-lsp": {
"command": ["fish-lsp", "start"],
"extensions": [".fish"]
},
"gopls": {
"command": ["gopls"]
},
"haskell-language-server": {
"command": ["haskell-language-server-wrapper", "--lsp"]
},
"json-ls": {
"command": ["vscode-json-language-server", "--stdio"],
"extensions": [".json", ".jsonc"]
},
"kotlin-ls": {
"command": ["kotlin-language-server"]
},
"lua-ls": {
"command": ["lua-language-server"]
},
"marksman": {
"command": ["marksman", "server"],
"extensions": [".md", ".markdown"]
},
"nixd": {
"command": ["nixd"]
},
"oxlint": {
"disabled": true
},
"perlnavigator": {
"command": ["perlnavigator", "--stdio"],
"extensions": [".pl", ".pm", ".t"]
},
"ruff": {
"command": ["ruff", "server"],
"extensions": [".py", ".pyi"]
},
"rust": {
"command": ["rust-analyzer"]
},
"terraform": {
"command": ["terraform-ls", "serve"]
},
"texlab": {
"command": ["texlab"]
},
"tinymist": {
"command": ["tinymist", "lsp"]
},
"typescript": {
"command": ["typescript-language-server", "--stdio"],
"initialization": {
"tsserver": {
"path": "{env:HOME}/.local/share/nix-typescript/lib/tsserver.js"
}
}
},
"vim-ls": {
"command": ["vim-language-server", "--stdio"],
"extensions": [".vim"]
},
"yaml-ls": {
"command": ["yaml-language-server", "--stdio"]
},
"zls": {
"command": ["zls"]
},
"zuban": {
"command": ["zuban", "server"],
"extensions": [".py", ".pyi"]
}
}
}