-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
62 lines (62 loc) · 1.49 KB
/
coc-settings.json
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
{
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"clangd": {
"command": "/usr/bin/clangd",
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cpp", "objc", "objcpp"]
},
"lua": {
"command": "lua-language-server",
"filetypes": ["lua"],
"settings": {
"diagnostics": {
"disable": ["undefined-global", "lowercase-global"],
"globals": ["vim", "use"]
}
}
},
"python": {
"command": "@yaegassy/coc-pylsp",
"filetypes": ["py"],
"settings": {
"pyright": {
"useLibraryCodeForTypes": true
}
}
},
"typescript": {
"command": "typescript-language-server",
"args": ["--stdio"],
"filetypes": [
"javascript",
"javascriptreact",
"javascript.jsx",
"typescript",
"typescriptreact",
"typescript.tsx"
],
"settings": {
"typescript": {
"preferences": {
"importModuleSpecifierPreference": "non-relative"
}
}
}
}
},
"solargraph.hover": true,
"solargraph.commandPath": "/usr/local/bin/solargraph",
"solargraph.shell": "/usr/bin/zsh",
"colors.enable": false,
"suggest.noselect": true,
"deno.lint": true,
"coc.preferences.formatOnSave": true,
"tsserver.enable": true,
"prettier.enable": true
}