-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
106 lines (106 loc) · 2.24 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"suggest.completionItemKindLabels": {
"keyword": "",
"variable": "",
"value": "",
"operator": "Ψ",
"constructor": "",
"function": "ƒ",
"reference": "渚",
"constant": "",
"method": "",
"struct": "פּ",
"class": "",
"interface": "",
"text": "",
"enum": "",
"enumMember": "",
"module": "",
"color": "",
"property": "",
"field": "料",
"unit": "",
"event": "鬒",
"file": "",
"folder": "",
"snippet": "",
"typeParameter": "",
"default": ""
},
"diagnostic.errorSign": "❗",
"diagnostic.warningSign": "💡",
"diagnostic.infoSign": "💡",
"diagnostic.hintSign": "💡",
"diagnostic.signPriority": 100,
"coc.preferences.formatOnSave": false,
"languageserver": {
"asm-lsp": {
"command": "asm-lsp",
"filetypes": [
"asm",
"s",
"S",
"assembly",
"nasm"
]
},
"bitbake": {
"command": "bitbake-language-server",
"filetypes": [
"bitbake"
]
},
"ginko_ls": {
"command": "ginko_ls",
"filetypes": [
"dts"
]
}
},
"inlayHint.display": false,
"[rust][c][cpp]": {
"semanticTokens.enable": true
},
"clangd.compilationDatabaseCandidates": [
"./",
"build",
"Debug",
"Release"
],
"clangd.arguments": [
"--background-index",
"--clang-tidy",
"--clang-tidy-checks=*",
"--header-insertion=never",
"--completion-style=detailed"
],
"python.formatting.provider": "black",
"pyright.inlayHints.functionReturnTypes": false,
"pyright.inlayHints.variableTypes": false,
"snippets.ultisnips.pythonPrompt": false,
"python.analysis.useLibraryCodeForTypes": true,
"python.analysis.typeCheckingMode": "basic",
"diagnostic-languageserver.filetypes": {
"vim": "vint",
"markdown": [
"write-good",
"markdownlint"
],
"sh": "shellcheck",
"yaml": [
"yamllint"
],
"cmake": [
"cmake-lint",
"cmakelint"
],
"systemd": "systemd-analyze"
},
"diagnostic-languageserver.formatFiletypes": {
"sh": "shfmt",
"cmake": "cmake-format"
},
"cSpell.import": [
"~/.vim/cSpell.json"
]
}