mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-16 03:40:57 +01:00
Add code config
Sometimes you may want to use an editor that is Not Vim. Although such an editor may be feasible for the majority of users, an editor that is Not Vim will not behave exactly like Vim, even with plugins. Existing Vim users should not try to use Code as an editor. It is instead a useful editor for when someone needs to use a Non Vim editor on your machine (although you certainly should *not* condone this). Code does, however, feature a useful file explorer that requires no configuration nor maintenance to use. It just works.
This commit is contained in:
parent
59dc5d1b3a
commit
d97175b059
30
.config/Code - OSS/User/settings.json
Normal file
30
.config/Code - OSS/User/settings.json
Normal file
@ -0,0 +1,30 @@
|
||||
// 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
|
Loading…
Reference in New Issue
Block a user