-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
134 lines (117 loc) · 4.61 KB
/
Copy pathsettings.json
File metadata and controls
134 lines (117 loc) · 4.61 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
// File Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": true,
"explorer.compactFolders": false,
// Terminal settings
"terminal.integrated.fontFamily": "'JetBrainsMono Nerd Font', Consolas, 'Courier New', monospace",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontLigatures": true,
"terminal.integrated.wordWrap": "on",
"terminal.integrated.stickyScroll.enabled": false,
// Editor behavior
"workbench.editor.enablePreview": false,
"files.autoSave": "onFocusChange",
"editor.cursorBlinking": "expand",
"editor.cursorStyle": "line",
"editor.cursorSmoothCaretAnimation": "on",
"editor.wordWrap": "on",
"editor.autoClosingBrackets": "always",
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.formatOnPaste": true,
"editor.fontFamily": "'JetBrainsMono Nerd Font', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.stickyTabStops": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.verticalScrollbarSize": 6,
"editor.scrollbar.horizontalScrollbarSize": 6,
"editor.scrollbar.sliderBackground": "#ffffff40",
"editor.scrollbar.sliderHoverBackground": "#ffffff80",
"editor.scrollbar.sliderActiveBackground": "#ffffffcc",
"editor.scrollbar.rounded": true,
"editor.padding.top": 12,
"editor.padding.bottom": 8,
// Editor minimap
"editor.minimap.scale": 1,
"editor.minimap.maxColumn": 50,
"editor.minimap.size": "fill",
"editor.minimap.showSlider": "always",
// Workbench layout
"workbench.panel.defaultLocation": "right",
"window.titleBarStyle": "custom",
"window.title": "${activeEditorShort}",
"workbench.startupEditor": "none",
"window.commandCenter": false,
"chat.commandCenter.enabled": false,
"workbench.editor.showTabs": "multiple",
"workbench.navigationControl.enabled": false,
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": false,
"window.restoreWindows": "all",
"window.restoreFullscreen": true,
// Color customization
"workbench.colorCustomizations": {
// border customization
"editorGroup.border": "#5c5b5b40",
"sideBar.border": "#5c5b5b40",
"panel.border": "#5c5b5b40",
// panels customization
"titleBar.activeBackground": "#212631",
"sideBar.background": "#212631",
"panel.background": "#212631",
"statusBar.background": "#212631",
// scrollbar customization
"scrollbarSlider.background": "#00000000",
"scrollbarSlider.hoverBackground": "#00000000",
"scrollbarSlider.activeBackground": "#00000000",
// slider customization
"minimapSlider.background": "#8b62c622",
"minimapSlider.hoverBackground": "#b37bff22",
"minimapSlider.activeBackground": "#b37bff22",
// selection and line highlight customization
"editor.selectionBackground": "#4b2d72",
"editor.lineHighlightBackground": "#4a2d70",
// line number customization
"editorLineNumber.foreground": "#5a5f7d",
"editorLineNumber.activeForeground": "#c792ea",
// quick input customization
"quickInput.border": "#89DDFF",
"quickInput.background": "#212631",
"quickInput.foreground": "#A6ACCD",
"quickInputList.focusBackground": "#414863",
"quickInputList.focusForeground": "#A6ACCD",
"quickInputTitle.background": "#34324A"
},
// comment color
"editor.tokenColorCustomizations": {
"comments": "#6a748d"
},
// Theme and icons
"workbench.colorTheme": "Palenight Italic",
"workbench.preferredDarkColorTheme": "Default Dark+",
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "material-product-icons",
// File handling
"files.hotExit": "onExitAndWindowClose",
// Profile settings
"workbench.settings.applyToAllProfiles": [
"glassit.alpha",
"editor.tabSize"
],
// Editor associations
"workbench.editorAssociations": {
"*.copilotmd": "vscode.markdown.preview.editor",
"*.h5": "default"
},
// Custom CSS and JS
"vscode_custom_css.imports": [
// Add the path to your custom CSS file here
"file:///C:/path/to/your/custom/style.css"
]
}