forked from extern/nix-config
c07819e5c8
vs-wal has some issues such as illegible text and no live reloading, however, it is (from what I know) the easiest way to use a color scheme consistent with your setup. Code will use the default dark theme if vs-wal is not found.
31 lines
910 B
JSON
31 lines
910 B
JSON
// New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
// Copyright (C) 2018 Donovan Glover
|
|
{
|
|
// Look and feel
|
|
"workbench.colorTheme": "vs-wal",
|
|
"workbench.iconTheme": "material-icon-theme",
|
|
"editor.smoothScrolling": true,
|
|
|
|
// Always start with the previous workspace
|
|
"workbench.startupEditor": "newUntitledFile",
|
|
|
|
// Confirmations
|
|
"explorer.confirmDelete": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
|
|
// Attempt to render things properly for HiDPI displays
|
|
"terminal.integrated.rendererType": "dom",
|
|
"editor.disableTranslate3d": true,
|
|
|
|
// Toggle the menu bar with alt
|
|
"window.menuBarVisibility": "toggle",
|
|
|
|
// Disable the enabled-by-default telemetry
|
|
"telemetry.enableTelemetry": false,
|
|
"telemetry.enableCrashReporter": false,
|
|
|
|
// Prefer yarn over npm
|
|
"eslint.packageManager": "yarn"
|
|
}
|
|
// vim:syn=javascript
|