-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
66 lines (63 loc) · 1.8 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
{
"coc.preferences.formatOnType": true,
"diagnostic.virtualText": true,
"diagnostic.checkCurrentLine": true,
"diagnostic.messageTarget": "float",
"suggest.triggerAfterInsertEnter": false,
"suggest.timeout": 500,
"suggest.snippetIndicator": "★",
"suggest.triggerCompletionWait": 100,
"suggest.echodocSupport": true,
"suggest.noselect": false,
"npm.binPath":"/home/saikiran/.nvm/versions/node/v13.13.0/bin/npm",
"tsserver.npm":"/home/saikiran/.nvm/versions/node/v13.13.0/bin/npm",
"eslint.autoFixOnSave": true,
"eslint.autoFix": true,
"eslint.filetypes": ["javascript", "javascriptreact", "typescript", "typescriptreact","vue"],
"eslint.options":{
"configFile":"/home/saikiran/Documents/Projects/venex/.eslintrc.js"
},
"git.enableGutters": true,
"git.addGblameToBufferVar": true,
"git.addGblameToVirtualText": true,
"git.virtualTextPrefix": " ❯❯❯ ",
"python.linting.pylintArgs": ["--generate-members"],
"languageserver": {
"bash": {
"command": "bash-language-server",
"filetypes": ["sh"],
"args": ["start"],
"ignoredRootPaths": ["~"]
},
"ocaml-lsp": {
"command": "opam",
"args": ["config", "exec", "--", "ocamllsp"],
"filetypes": ["ocaml", "reason"]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".vim/", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
}
}
},
"dockerfile": {
"command": "docker-langserver",
"filetypes": ["dockerfile"],
"args": ["--stdio"]
}
}
,
"coc.preferences.formatOnSaveFiletypes": [
"css",
"markdown",
"Markdown",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}