forked from yoo-bit/VDeamoV-vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
26 lines (26 loc) · 809 Bytes
/
coc-settings.json
File metadata and controls
26 lines (26 loc) · 809 Bytes
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
{
"diagnostic.warningSign": "W",
"diagnostic.errorSign": ">>",
"diagnostic.displayByAle": true,
"python.autoComplete.addBrackets": false,
"python.jediEnabled": false,
"languageserver": {
"cquery": {
"command": "cquery",
"args": ["--log-file=/tmp/cq.log"],
"filetypes": ["c", "cpp"],
"rootPatterns": ["compile_flags.txt", "compile_commands.json", ".vim/", ".git/", ".hg/"],
"initializationOptions": {
"cacheDirectory": "/tmp/cquery"
}
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
}
},
"java.errors.incompleteClasspath.severity": "ignore",
"imselect.defaultInput": "com.apple.keylayout.ABC",
"imselect.enableStatusItem": true,
}