-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
93 lines (80 loc) · 1.97 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
{
// General Config
"coc.preferences.currentFunctionSymbolAutoUpdate": true,
"coc.preferences.enableLinkedEditing": true,
"coc.preferences.tagDefinitionTimeout": 1200,
"coc.source.around.priority": 100,
"codeLens.enable": true,
"diagnostic.enableMessage": "jump",
"diagnostic.virtualText": false,
"diagnostic.virtualTextAlign": "right",
"diagnostic.virtualTextLevel": "warning",
"diagnostic.virtualTextLimitInOneLine": 1,
"diagnostic.virtualTextLines": 1,
"diagnostic.virtualTextPrefix": " ",
"inlayHint.enable": false,
"outline.previewBorderRounded": true,
"semanticTokens.enable": true,
"session.saveOnVimLeave": false,
"snippets.snipmate.enable": false,
"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": ""
},
"suggest.defaultSortMethod": "none",
"suggest.labelMaxLength": 100,
"suggest.reversePumAboveCursor": true,
"suggest.virtualText": true,
"yank.highlight.enable": false,
// Language Config
"go.goplsOptions": {
"semanticTokens": true,
"gofumpt": true
},
"python.pythonPath": "python3",
"python.formatting.provider": "yapf",
"languageserver": {
"nix": {
"command": "nil",
"filetypes": ["nix"],
"settings": {
"nil": {
"formatting": { "command": ["nixpkgs-fmt"] }
}
}
},
"asm-lsp": {
"command": "asm-lsp",
"filetypes": [
"asm",
"gas",
"s",
"S"
]
}
}
}