-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.json
More file actions
139 lines (139 loc) · 4.94 KB
/
Copy pathsetting.json
File metadata and controls
139 lines (139 loc) · 4.94 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
135
136
137
138
139
{
// ================= PRIVACY / TELEMETRY =================
"telemetry.telemetryLevel": "off",
"telemetry.feedback.enabled": false,
"telemetry.editStats.enabled": false,
"telemetry.enableCrashReporter": false,
"workbench.enableExperiments": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"github.telemetry.enabled": false,
"github.copilot.enableTelemetry": false,
"github.copilot.advanced": {
"telemetry": false
},
"redhat.telemetry.enabled": false,
"java.telemetry.enabled": false,
"workbench.reportIssues.experimental.enabled": false,
"chat.experimental.enableTelemetry": false,
"chat.sendDiagnostics": false,
"workbench.experimental.webWorker": false,
"settingsSync.enabled": false,
"settingsSync.keybindingsPerPlatform": false,
// ================= COPILOT =================
"github.copilot.editor.enableAutoCompletions": true,
"github.copilot.nextEditSuggestions.enabled": true,
"editor.inlineSuggest.enabled": true,
// ================= UI / LAYOUT =================
"chat.viewSessions.orientation": "stacked",
"comments.openView": "never",
"breadcrumbs.enabled": true,
"window.zoomLevel": 0.2,
"window.titleBarStyle": "custom",
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Default Dark+",
"workbench.editor.tabSizing": "shrink",
"workbench.sideBar.location": "left",
"workbench.tree.indent": 16,
"editor.mouseWheelZoom": true,
// ================= EDITOR LOOK =================
"editor.fontSize": 15,
"editor.fontFamily": "Fira Code, JetBrains Mono, Consolas, monospace",
"editor.fontLigatures": true,
"editor.lineHeight": 25,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "boundary",
"editor.linkedEditing": true,
"editor.semanticHighlighting.enabled": true,
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
// ================= CURSOR =================
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorSurroundingLines": 3,
// ================= HIGHLIGHTING =================
"editor.renderLineHighlight": "all",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.guides.indentation": true,
"editor.guides.highlightActiveIndentation": true,
"editor.selectionHighlight": true,
// ================= FORMATTING =================
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
// ================= INTELLISENSE =================
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
// ================= FILES =================
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/__pycache__": true,
"**/.ipynb_checkpoints": true
},
// ================= GIT =================
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
// ================= TERMINAL =================
"terminal.integrated.fontSize": 14,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.smoothScrolling": true,
// ================= PERFORMANCE =================
"diffEditor.maxComputationTime": 0,
"editor.largeFileOptimizations": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true
},
// ================= COLORS & THEME =================
"editor.tokenColorCustomizations": {
"comments": "#82937a",
"strings": "#CE9178",
"keywords": "#C586C0",
"numbers": "#B5CEA8",
"functions": "#DCDCAA",
"types": "#4EC9B0",
"variables": "#9CDCFE"
},
"workbench.colorCustomizations": {
"editor.background": "#1a1b26",
"editor.foreground": "#c0caf5",
"editorCursor.foreground": "#7aa2f7",
"editor.lineHighlightBackground": "#292e42",
"editor.selectionBackground": "#364a82",
"sideBar.background": "#16161e",
"sideBar.foreground": "#a9b1d6",
"activityBar.background": "#16161e",
"activityBar.foreground": "#7aa2f7",
"tab.activeBackground": "#1f2335",
"tab.inactiveBackground": "#16161e",
"statusBar.background": "#1f2335",
"statusBar.foreground": "#a9b1d6",
"titleBar.activeBackground": "#1f2335",
"titleBar.activeForeground": "#c0caf5",
"titleBar.inactiveBackground": "#16161e",
"titleBar.inactiveForeground": "#565f89",
"editorIndentGuide.background": "#404040",
"editorIndentGuide.activeBackground": "#C586C0"
},
// ================= COMMENTS =================
"editor.comments.insertSpace": true,
"editor.comments.ignoreEmptyLines": true
}