Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change color of Status Bar - NEO active connect #138

Closed
wants to merge 12 commits into from
15 changes: 9 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
"${workspaceFolder}/sample-workspaces/sample-workspace",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
/* "preLaunchTask": "${defaultBuildTask}"
*/
},
{
"name": "Run Extension (empty workspace)",
Expand All @@ -23,17 +24,19 @@
"${workspaceFolder}/sample-workspaces/empty-workspace",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
/* "preLaunchTask": "${defaultBuildTask}"
*/
},
{
"name": "Run Extension (no workspace)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
/* "preLaunchTask": "${defaultBuildTask}"
*/
}
]
}
12 changes: 11 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,15 @@

// Auto format files on save using Prettier:
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",

//Adding the following code allows us to change the colors on the status bar at the bottom of the VS Code border to whatever we like
"workbench.colorCustomizations": {
"statusBar.background": "#1A1A1A",
"statusBar.noFolderBackground": "#212121",
"statusBar.debuggingBackground": "#263238",
"statusBarItem.prominentForeground": "#55eb34",

"statusBar.foreground": "#ce8416"
}
}
Loading