-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
62 lines (57 loc) · 2.26 KB
/
settings.json
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
{
/** ------------ Workbench Settings ------------ **/
"workbench.colorCustomizations": {
"inlineparameters.annotationBackground": "#282A3600",
"inlineparameters.annotationForeground": "#7b82af",
"scrollbar.shadow": "#24292e00",
"editorLineNumber.foreground": "#7b82af"
},
"workbench.iconTheme": "vscode-jetbrains-icon-theme-2023-dark",
"workbench.productIconTheme": "fluent-icons",
"workbench.editorLargeFileConfirmation": 10024,
"workbench.layoutControl.enabled": false,
"workbench.editor.showTabs": "multiple",
"workbench.tree.indent": 16,
"workbench.startupEditor": "none",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.editor.empty.hint": "hidden",
/** ------------ Breadcrumbs Configurations ------------ **/
"breadcrumbs.enabled": false,
"breadcrumbs.symbolPath": "off",
"breadcrumbs.filePath": "on",
/** ------------ Editor Settings ------------ **/
"editor.fontFamily": "'Fira Code', 'Hack Nerd Font', Monospace",
"editor.fontSize": 14.5,
"editor.fontWeight": "450",
"editor.lineNumbers": "on",
"editor.folding": true,
"editor.glyphMargin": true,
"editor.guides.indentation": false,
"editor.scrollbar.horizontal": "auto",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.cursorStyle": "line",
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"editor.stickyScroll.enabled": true,
/** ------------ Terminal Configurations ------------ **/
"terminal.integrated.defaultProfile": {
"windows": "PowerShell",
"linux": "bash",
"osx": "zsh"
},
"terminal.integrated.fontFamily": "'Fira Code', 'Hack Nerd Font', Monospace",
"terminal.integrated.fontSize": 14,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
/** ------------ Custom CSS/JS Configurations ------------ **/
"vscode_custom_css.imports": [
// Ganti path berikut dengan path yang sesuai di sistem Anda
// Untuk macOS/Linux:
// "file:///home/your-username/.vscode/vscode-custom/style.css",
// "file:///home/your-username/.vscode/vscode-custom/script.js",
// Untuk Windows:
"file:///C:/Users/asus/.vscode/vscode-custom/style.css",
"file:///C:/Users/asus/.vscode/vscode-custom/script.js"
]
}