-
Notifications
You must be signed in to change notification settings - Fork 20
/
coc-settings.json
114 lines (114 loc) · 4.09 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
107
108
109
110
111
112
113
114
{
"coc.preferences.formatOnType": true,
"coc.preferences.messageLevel": "error",
"coc.preferences.enableLinkedEditing": true,
"codeLens.enable": true,
"colors.enable": true,
"cSpell.enabledLanguageIds": ["markdown", "text"],
"diagnostic.virtualText": true,
"diagnostic.virtualTextAlign": "right",
"diagnostic.virtualTextLevel": "warning",
"diagnostic.virtualTextFormat": "\uf45d %source: [%severity]%message",
"diagnostic.virtualTextLimitInOneLine": 1,
"diagnostic.virtualTextLineSeparator": " \ue729 ",
"diagnostic.virtualTextCurrentLineOnly": false,
"diagnostic.refreshOnInsertMode": true,
"diagnostic.format": "\uf45d [%severity]%message (%source%code)",
"diagnostic.errorSign": "\uf188",
"diagnostic.warningSign": "\uf071",
"diagnostic.infoSign": "\uf05a",
"diagnostic.hintSign": "\uf835",
"emmet.includeLanguages": {
"htmldjango": "html"
},
"eslint.autoFixOnSave": false,
"eslint.alwaysShowStatus": true,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "html", "vue"],
"go.goplsOptions": {
"hints": {
"assignVariableTypes": true,
"compositeLiteralFields": true,
"constantValues": true,
"functionTypeParameters": true,
"parameterNames": true,
"rangeVariableTypes": true
}
},
"htmldjango.formatting.provider": "none",
"htmldjango.djlint.enableLint": true,
"htmldjango.djlint.profile": "nunjucks",
"inlayHint.refreshOnInsertMode": true,
"notification.disabledProgressSources": ["*"],
"outline.sortBy": "position",
"outline.expandLevel": 10,
"prettier.printWidth": 120,
"prettier.tabWidth": 4,
"prettier.trailingComma": "none",
"prettier.bracketSameLine": true,
"prettier.semi": true,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
"semanticTokens.enable": true,
"suggest.virtualText": false,
"suggest.noselect": false,
"suggest.triggerAfterInsertEnter": true,
"suggest.reversePumAboveCursor": true,
"suggest.maxCompleteItemCount": 100,
"suggest.formatItems": ["kind", "abbr", "menu", "shortcut"],
"suggest.snippetIndicator": " \ufb25 ",
"suggest.completionItemKindLabels": {
"keyword": "\uf1de",
"variable": "\ue79b",
"value": "\uf89f",
"operator": "\u03a8",
"constructor": "\uf0ad",
"function": "\u0192",
"reference": "\ufa46",
"constant": "\uf8fe",
"method": "\uf09a",
"struct": "\ufb44",
"class": "\uf0e8",
"interface": "\uf417",
"text": "\ue612",
"enum": "\uf435",
"enumMember": "\uf02b",
"module": "\uf40d",
"color": "\ue22b",
"property": "\ue624",
"field": "\uf9be",
"unit": "\uf475",
"event": "\ufacd",
"file": "\uf723",
"folder": "\uf114",
"snippet": "\ue60b",
"typeParameter": "\uf728",
"default": "\uf29c"
},
"snippets.extends": {
"javascript": ["javascript", "html"],
"javascriptreact": ["javascriptreact", "html"],
"typescriptreact": ["typescriptreact", "html"]
},
"snippets.userSnippetsDirectory": "~/.vim/UltiSnips",
"tabnine.priority": 95,
"tabnine.enablePreselect": false,
"tsserver.useLocalTsdk": true,
"typescript.format.enable": true,
"javascript.format.enable": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true,
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true,
"typescript.preferences.quoteStyle": "auto",
"javascript.preferences.quoteStyle": "auto"
}