mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-03-04 01:21:13 +01:00
Not sure if I'll remove these again. All I know is that I'll no longer have to worry about not having certain dotfiles if I want to try a particular setup again, which is nice.
25 lines
677 B
JSON
25 lines
677 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",
|
|
|
|
// Always start with the previous workspace
|
|
"workbench.startupEditor": "newUntitledFile",
|
|
|
|
// Confirmations
|
|
"explorer.confirmDelete": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
|
|
// 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
|