Setup
Install a Nerdfont to use in Visual Studio Code. I primarily use the Terminess Nerd Font.
settings.json
{
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"editor.tabSize": 2,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.minimap.autohide": true,
"workbench.tips.enabled": false,
"editor.scrollbar.horizontalScrollbarSize": 10,
"editor.scrollbar.verticalScrollbarSize": 10,
"workbench.startupEditor": "none",
"gitblame.inlineMessageEnabled": true,
"git-graph.repository.commits.initialLoad": 500,
"workbench.tree.renderIndentGuides": "always",
"typescript.preferences.quoteStyle": "single",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.mouseWheelZoom": true,
"git-graph.repository.commits.loadMore": 250,
"settingsSync.ignoredSettings": [
"-window.zoomLevel"
],
"editor.accessibilitySupport": "off",
"workbench.activityBar.location": "top",
"editor.hover.delay": 500,
"window.zoomLevel": 1,
"redhat.telemetry.enabled": false
}
workbench.json
{
"workbench.colorCustomizations": {
"statusBar.background" : "#b7ce0e",
"statusBar.foreground": "#000000",
"statusBar.noFolderBackground" : "#212121",
"statusBar.debuggingBackground": "#263238"
}
}