-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcoc-settings.json
118 lines (118 loc) · 2.94 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
115
116
117
118
{
"coc.preferences.currentFunctionSymbolAutoUpdate": true,
"diagnostic.infoSign": "\uf129",
"diagnostic.warningSign": "\uf526",
"diagnostic.errorSign": "\uf656",
"suggest.enablePreview": true,
"suggest.autoTrigger": "always",
"suggest.noselect": false,
"suggest.triggerAfterInsertEnter": true,
"suggest.preferCompleteThanJumpPlaceholder": true,
"suggest.completionItemKindLabels": {
"function": "\uf794",
"method": "\uf6a6",
"variable": "\uf71b",
"constant": "\uf8ff",
"struct": "\ufb44",
"class": "\uf0e8",
"interface": "\ufa52",
"text": "\ue612",
"enum": "\uf435",
"enumMember": "\uf02b",
"module": "\uf668",
"color": "\ue22b",
"property": "\ufab6",
"field": "\uf93d",
"unit": "\uf475",
"file": "\uf471",
"value": "\uf8a3",
"event": "\ufacd",
"folder": "\uf115",
"keyword": "\uf893",
"snippet": "\uf64d",
"operator": "\uf915",
"reference": "\uf87a",
"typeParameter": "\uf278",
"default": "\uf29c"
},
"yaml.schemas": {
"kubernetes": "*.k8s.yaml",
"http://json.schemastore.org/drone": "*drone.yml"
},
"list.insertMappings": {
"<C-n>": "normal:j",
"<C-p>": "normal:k"
},
"languageserver": {
"swift": {
"command": "sourcekit-lsp",
"filetypes": [
"swift"
]
},
"kotlin": {
"command": "kotlin-language-server",
"filetypes": [
"kotlin"
]
},
"dockerfile": {
"command": "docker-langserver",
"filetypes": [
"Dockerfile"
],
"args": [
"--stdio"
]
},
"bash": {
"command": "bash-language-server",
"filetypes": [
"sh"
],
"args": [
"start"
],
"ignoredRootPaths": [
"~"
]
},
"metals": {
"command": "metals-vim",
"rootPatterns": [
"build.sbt"
],
"filetypes": [
"scala",
"sbt"
],
"settings": {
"metals": {
"sbt-script": "/usr/local/bin/sbt"
}
}
}
},
"rust-analyzer.assist.importPrefix": "by_crate",
"rust-analyzer.assist.importGroup": true,
"rust-analyzer.assist.importGranularity": "crate",
"rust-analyzer.updates.channel": "nightly",
"list.source.grep.command": "rg",
"git.enableGutters": false,
"tslint.packageManager": "yarn",
"tslint.autoFixOnSave": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"java.jdt.ls.vmargs": "-javaagent:/Users/niksun/.opt/lombok.jar -Xbootclasspath/a:/Users/niksun/.opt/lombok.jar",
"java.configuration.updateBuildConfiguration": "automatic",
"java.import.maven.enabled": true,
"java.import.gradle.enabled": true,
"java.maven.downloadSources": true,
"clangd.path": "clangd",
"clangd.semanticHighlighting": true,
"snippets.extends": {
"cpp": ["c"],
"javascriptreact": ["javascript"],
"typescript": ["javascript"]
},
"snippets.ultisnips.pythonPrompt": false
}