-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
94 lines (89 loc) · 2.81 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
{
"python.jediEnabled": false,
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.formatting.provider": "black",
"python.formatting.blackPath": "/usr/local/bin/black",
"python.formatting.blackArgs": ["--skip-string-normalization"],
"python.typeshedPaths": "/home/dob9601/repos2/typeshed",
"coc.preferences.jumpCommand": "tab drop",
"clangd.path": "/home/dob9601/.config/coc/extensions/coc-clangd-data/install/12.0.0/clangd_12.0.0/bin/clangd",
"cSpell.userWords": [
"philmnight"
],
"explorer.icon.enableNerdfont": true,
"explorer.icon.source": "nvim-web-devicons",
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
"filetypes": ["haskell", "lhaskell"]
},
"cwl": {
"command": "benten-ls",
"filetypes": ["cwl"]
}
},
"java.home": "/lib/jvm/java-11-openjdk",
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "/lib/jvm/java-8-openjdk"
},
{
"name": "JavaSE-11",
"path": "/lib/jvm/java-11-openjdk"
},
{
"name": "JavaSE-15",
"path": "/lib/jvm/java-15-openjdk",
"default": true
}
],
"diagnostic.locationlistUpdate": true,
"diagnostic.refreshOnInsertMode": true,
/*
"diagnostic.virtualText": true,
"diagnostic.virtualTextLines": 10,
"diagnostic.virtualTextCurrentLineOnly": false,
"diagnostic.virtualTextPrefix": "-> ",
"diagnostic.messageTarget": "float",
*/
"diagnostic.hintSign": "",
"diagnostic.infoSign": "",
"diagnostic.warningSign": "",
"diagnostic.errorSign": "",
"codeLens.enable": true,
"rust-analyzer.checkOnSave.command": "clippy",
"suggest.completionItemKindLabels": {
"method": " ",
"function": " ",
"variable": "[]",
"field": " ",
"typeParameter": "<>",
"constant": " ",
"class": " פּ ",
"interface": " 蘒",
"struct": " ",
"event": " ",
"operator": " ",
"module": " ",
"property": " ",
"enum": " 練",
"reference": " ",
"keyword": " ",
"file": " ",
"folder": " ﱮ ",
"color": " ",
"unit": " 塞 ",
"snippet": " ",
"text": " ",
"constructor": " ",
"value": " ",
"enumMember": " "
},
"suggest.labelMaxLength": 50
}