mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 13:23:09 +01:00
5de5e51398
The desktop directory is used for desktop-related things that may be useful outside of bspwm (such as caps lock functioning as ctrl + escape). Whether or not this is needed is questionable, but it is an option for now. It may be better to further split these directories and avoid the generic word "desktop" altogether.
31 lines
908 B
JSON
31 lines
908 B
JSON
// New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
// Copyright (C) 2018 Donovan Glover
|
|
{
|
|
// Look and feel
|
|
"workbench.colorTheme": "Nord",
|
|
"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
|