-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
71 lines (71 loc) · 1.91 KB
/
coc-settings.json
File metadata and controls
71 lines (71 loc) · 1.91 KB
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
{
"coc.preferences.extensionUpdateCheck": "daily",
"coc.preferences.formatOnType": true,
"suggest.enablePreselect": false,
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualText": true,
"diagnostic.enableMessage": "jump",
"diagnostic.errorSign": "✖",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "•",
"diagnostic.hintSign": "•",
"diagnostic-languageserver.filetypes": {
"php": ["phpstan", "phpcs"]
},
"diagnostic-languageserver.mergeConfig": true,
"diagnostic-languageserver.linters": {
"phpcs": {
"args": [
"--standard=PSR12",
"--exclude=Generic.Files.LineLength.TooLong",
"--report=emacs",
"-s",
"-"
]
}
},
"git.enableGutters": true,
"git.addedSign.text": "┃",
"git.changedSign.text": "┃",
"git.removedSign.text": "▁",
"git.topRemovedSign.text": "▔",
"git.changeRemovedSign.text": "▔",
"phpls.path": "/usr/local/bin/intelephense",
"tsserver.trace.server": "verbose",
"php-cs-fixer.config": ".php-cs-fixer.dist.php",
"php-c-fixer.enableFormatProvider": true,
"intelephense.environment.phpVersion": "8",
"tailwindCSS.dashForceCompletions": false,
"tailwindCSS.validate": true,
"coc.preferences.formatOnSaveFiletypes": [
"css",
"markdown",
"typescript",
"html",
"scss"
],
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.includeLanguages": {
"plaintext": "html"
},
"prettier.requireConfig": true,
"languageserver": {
"lua": {
"command": "lua-language-server",
"args": ["-E"],
"filetypes": ["lua"],
"settings": {
"Lua": {
"workspace.library": {
"/usr/share/nvim/runtime/lua": true,
"/usr/share/nvim/runtime/lua/vim": true,
"/usr/share/nvim/runtime/lua/vim/lsp": true
},
"diagnostics": {
"globals": ["vim"]
}
}
}
}
}
}