-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
42 lines (41 loc) · 1.34 KB
/
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
// VSCode settings.json
{
"window.zoomLevel": 1,
"editor.renderWhitespace": "all",
"editor.insertSpaces": false,
"workbench.sideBar.location": "right",
"phpcs.enable": true,
"phpcs.standard": "WordPress",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"phpcs.executablePath": "/usr/local/bin/phpcs",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
//"workbench.startupEditor": "none",
//"editor.fontLigatures": true,
//"editor.fontFamily": "'Victor Mono Medium'",
////"vscode_custom_css.policy": true,
////"vscode_custom_css.imports": ["file:///home/devarshi/.vscode/style.css"],
//"editor.tokenColorCustomizations": {
// "textMateRules": [
// {
// "name": "Documentation",
// "scope": "comment.block.documentation",
// //"settings": { "fontStyle": "italic" }
// },
// {
// "name": "Comment",
// "scope": "comment",
// //"settings": { "fontStyle": "italic" }
// },
// ]
//},
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.untitled.hint": "hidden",
// Open code in full screen always.
"window.restoreFullscreen": true,
"window.newWindowDimensions": "fullscreen",
}%