-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
39 lines (33 loc) · 1.65 KB
/
settings.json
File metadata and controls
39 lines (33 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
// Files
"files.autoSave": "onFocusChange", // Automatically Save Files When Out Of Focus
// Editor
"editor.fontFamily": "JetBrains Mono", // Sets Font Family For Editor
"editor.mouseWheelZoom": true, // Allows Zooming With Mouse Wheel
"editor.minimap.enabled": false, // Enables Or Disables The Minmap
"editor.cursorBlinking": "expand", // Sets The Cursor Bliking Style
"editor.stickyScroll.enabled": false, // Enables Or Disables Sticky Scroll Feature
"editor.stickyScroll.scrollWithEditor": false, // Controls If Sticky Scroll Moves With Editor
// Workbench
"workbench.startupEditor": "none", // Specifies What To Show On Startup
"workbench.settings.applyToAllProfiles": [ // Applies Settings To All Profiles
"workbench.colorCustomizations"
],
"workbench.activityBar.location": "top", // Sets Location Of Activity Bar
"workbench.tree.enableStickyScroll": false, // Enables Or Disables Sticky Scroll For Tree View
// Terminal
"terminal.explorerKind": "both",
"terminal.integrated.mouseWheelZoom": true, // Allows Zooming In Termial
// Window
"window.titleBarStyle": "custom", // Uses Custom Title
"window.commandCenter": false, // Enables Or Disable Command Centre
// Explorer
"explorer.confirmDelete": false, // Prevents Confimation For Deletion
"explorer.confirmDragAndDrop": false, // Prevents Confimation For Drag And Drop
// Extension Specific - Custom JS CSS Extension
"vscode_custom_css.imports": [
"file:///C:/Users/maity/CustomVSC/styles.css"
],
"workbench.layoutControl.enabled": false,
"workbench.navigationControl.enabled": false
}