-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
115 lines (109 loc) · 3.54 KB
/
Copy pathsettings.json
File metadata and controls
115 lines (109 loc) · 3.54 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
{
// ==============================
// Git
// ==============================
"git.autofetch": true,
"git.confirmSync": false,
// ==============================
// Workbench / UI
// ==============================
"workbench.colorTheme": "Kanagawa Wave",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "right",
"workbench.layoutControl.enabled": false,
"window.titleBarStyle": "custom",
// ==============================
// Editor
// ==============================
"editor.detectIndentation": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
"editor.stickyScroll.enabled": false,
// ==============================
// Languages
// ==============================
"[c]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.defaultFormatter": "keyhr.42-c-format"
},
"[cpp]": {
"editor.defaultFormatter": "keyhr.42-c-format"
},
// ==============================
// Extensions
// ==============================
// 42Tokyo - 42Header
"42header.username": "nkojima",
"42header.email": "nkojima@student.42tokyo.jp",
"markdown-mermaid.darkModeTheme": "neutral",
"markdown-mermaid.lightModeTheme": "neutral",
"redhat.telemetry.enabled": true,
"extensions.ignoreRecommendations": true,
// background - image
"background.enabled": true,
"background.fullscreen": {
"images": [
"/usr/local/share/ghostty/backgrounds"
],
"opacity": 0.042,
"random": true
},
// background - opacity
"vscode_vibrancy.opacity": 0.42,
"workbench.colorCustomizations": {
"terminal.background": "#00000000",
"editorPane.background": "#1e1e1e00",
"editorGroupHeader.tabsBackground": "#1e1e1e00",
"editorGroupHeader.noTabsBackground": "#1e1e1e00",
"breadcrumb.background": "#1e1e1e00",
"editorGutter.background": "#1e1e1e00",
"panel.background": "#1e1e1e00",
"panelStickyScroll.background": "#1e1e1e00",
"tab.activeBackground": "#1e1e1e00",
"tab.unfocusedActiveBackground": "#1e1e1e00",
"sideBar.background": "#1e1e1e6b",
"sideBarTitle.background": "#1e1e1e6b",
"sideBarStickyScroll.background": "#1e1e1e6b",
"activityBar.background": "#1e1e1e6b",
"editor.background": "#1e1e1e6b",
"editorStickyScroll.background": "#1e1e1e6b",
"editorStickyScrollGutter.background": "#1e1e1e6b",
"tab.inactiveBackground": "#1e1e1e6b",
"tab.unfocusedInactiveBackground": "#1e1e1e6b",
"inlineChat.background": "#1e1e1ee6",
"editorWidget.background": "#1e1e1ee6",
"editorHoverWidget.background": "#1e1e1ee6",
"editorSuggestWidget.background": "#1e1e1ee6",
"notifications.background": "#1e1e1ee6",
"notificationCenterHeader.background": "#1e1e1ee6",
"menu.background": "#1e1e1ee6",
"quickInput.background": "#1e1e1ee6"
},
"workbench.panel.showLabels": false,
"zig.zls.enabled": "on",
"cursor.cpp.disabledLanguages": [
"markdown",
"plaintext",
"c"
],
"accessibility.signals.terminalBell": {
"sound": "on"
},
"terminal.integrated.gpuAcceleration": "off",
"window.systemColorTheme": "dark",
"window.autoDetectColorScheme": false,
"yaml.disableSchemaDetection": [
"**/.github/workflows/*.yml",
"**/.github/workflows/*.yaml",
"**/.gitea/workflows/*.yml",
"**/.gitea/workflows/*.yaml",
"**/.forgejo/workflows/*.yml",
"**/.forgejo/workflows/*.yaml"
]
}