-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
91 lines (91 loc) · 1.77 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
{
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": [
"start"
],
"filetypes": [
"sh"
],
"ignoredRootPaths": [
"~"
]
},
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp",
"objc",
"objcpp"
],
"rootPatterns": [
".ccls",
"compile_commands.json",
".vim/",
".git/",
".hg/"
],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"highlight": {
"lsRanges": true
},
"clang": {
"extraargs": "-std=c++20"
}
}
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": [
"--lsp"
],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": [
"haskell",
"lhaskell"
]
},
"terraform": {
"command": "terraform-ls",
"args": [
"serve"
],
"filetypes": [
"terraform",
"tf"
],
"initializationOptions": {},
"settings": {}
}
},
"go.goplsOptions": {
"hints": {
"constantValues": true,
"parameterNames": true,
"rangeVariableTypes": true,
"assignVariableTypes": true,
"compositeLiteralTypes": true,
"compositeLiteralFields": true,
"functionTypeParameters": true
}
},
"diagnostic.displayByAle": false,
"rust-analyzer": {
"checkOnSave.command": "clippy",
"completion.autoimport.enable": true
},
"sqlfluff.dialect": "postgres",
"sqlfluff.formatEnable": true,
"sumneko-lua.enableNvimLuaDev": true
}