-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode_settings.json
53 lines (53 loc) · 2.25 KB
/
vscode_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
{
"debug.openDebug": "openOnDebugBreak",
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "line",
"editor.lineHeight": 20,
"editor.rulers": [80],
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"php.validate.executablePath": "/usr/bin/php",
"php.validate.run": "onType",
"php.validate.enable": true,
"editor.renderIndentGuides": false,
"workbench.colorTheme": "Mariana Pro (Cool)",
"explorer.openEditors.visible": 0,
"editor.minimap.enabled": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1602275593551,
"php-cs-fixer.onsave": true,
"window.openFilesInNewWindow": "on",
"workbench.colorCustomizations": {
"statusBar.background": "#09aec4e7",
"statusBar.foreground": "#ffffff",
"statusBar.debuggingBackground": "#dd2244",
"statusBar.debuggingForeground": "#ffffff",
"editorLineNumber.foreground": "#4b6668",
"editorLineNumber.activeForeground": "#89DDFF",
"tab.inactiveForeground": "#88a4a7",
"editorCursor.foreground": "#ffffff",
"sideBar.foreground": "#88a4a7",
"list.activeSelectionForeground": "#ffffff",
"list.inactiveSelectionForeground": "#ffffff",
"editor.background": "#191c1d"
},
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.theme": "classic",
"material-icon-theme.activeIconPack": "angular",
"dart.previewFlutterUiGuides": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"todo-tree.tree.showScanModeButton": false,
"intelephense.diagnostics.undefinedClassConstants": false,
"intelephense.diagnostics.undefinedFunctions": false,
"intelephense.diagnostics.undefinedProperties": false,
"intelephense.diagnostics.undefinedTypes": false,
"intelephense.diagnostics.undefinedConstants": false,
"intelephense.diagnostics.undefinedMethods": false,
"intelephense.diagnostics.undefinedSymbols": false,
"breadcrumbs.enabled": true,
"workbench.startupEditor": "newUntitledFile"
}