1
0
forked from extern/nix-config
donovanglover-nix-config/code/.config/Code - OSS/User/settings.json
2023-04-23 23:03:33 -04:00

34 lines
977 B
JSON

// New Start: A modern Arch workflow built with an emphasis on functionality.
// Copyright (C) 2018 Donovan Glover
{
// Look and feel
"workbench.colorTheme": "Community Material Theme Ocean",
// 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",
// neovim inside vscode
"vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",
// Icon theme
"workbench.iconTheme": "eq-material-theme-icons",
// Font family
"editor.fontFamily": "'Hack Nerd Font', 'Droid Sans Mono', 'monospace', monospace"
}
// vim:syn=javascript