-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
104 lines (104 loc) · 4.36 KB
/
Copy pathsettings.json
File metadata and controls
104 lines (104 loc) · 4.36 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
{
"workbench.colorTheme": "cursor-dark",
"workbench.iconTheme": "charmed-soft",
"workbench.activityBar.location": "hidden",
"workbench.editor.showTabs": "single",
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"workbench.sideBar.location": "right",
"charmed-icons.hidesExplorerArrows": true,
"workbench.tree.enableStickyScroll": false,
"workbench.tree.renderIndentGuides": "none",
"workbench.tree.indent": 10,
"explorer.compactFolders": false,
"explorer.decorations.badges": false,
"window.customTitleBarVisibility": "never",
"window.titleBarStyle": "native",
"custom-ui-style.stylesheet": {
".notification-toast": "box-shadow: none !important",
".quick-input-widget.show-file-icons": "box-shadow: none !important",
".quick-input-widget": "top: 25vh !important",
".quick-input-list .scrollbar": "display: none",
".monaco-action-bar.quick-input-inline-action-bar": "display: none",
".editor-widget.find-widget": "box-shadow: none; border-radius: 4px",
".quick-input-titlebar": "background: #100B15 !important",
".monaco-workbench .part.editor > .content .editor-group-container > .title.title-border-bottom:after": "display: none",
".monaco-scrollable-element > .shadow.top": "display: none",
".sidebar .title-label": "padding: 0 !important",
".sidebar": "border: none !important",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "outline: none !important",
".monaco-list-row.focused": "outline: none !important",
".monaco-editor .scroll-decoration": "display: none",
".title-actions": "display: none !important",
".title.show-file-icons .label-container .monaco-icon-label.file-icon": "justify-content: center; padding: 0 !important",
".title .monaco-icon-label:after": "margin-right: 0",
".monaco-workbench .part.editor > .content .editor-group-container > .title > .label-container > .title-label": "padding-left: 60px",
".title .monaco-icon-label.file-icon": "margin: 0 60px",
".monaco-editor .cursors-layer .cursor": "background-image: linear-gradient(135deg, #ffaffc 10%, #DA70D6 100%)"
},
"custom-ui-style.font.sansSerif": "Dank Mono",
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "line",
"workbench.colorCustomizations": {
"editorCursor.background": "#000000",
"editorOverviewRuler.wordHighlightStrongForeground": "#0000",
"editorOverviewRuler.selectionHighlightForeground": "#0000",
"editorOverviewRuler.rangeHighlightForeground": "#0000",
"editorOverviewRuler.wordHighlightForeground": "#0000",
"editorOverviewRuler.bracketMatchForeground": "#0000",
"editorOverviewRuler.findMatchForeground": "#0000",
"editorOverviewRuler.modifiedForeground": "#0000",
"editorOverviewRuler.deletedForeground": "#0000",
"editorOverviewRuler.warningForeground": "#0000",
"editorOverviewRuler.addedForeground": "#0000",
"editorOverviewRuler.errorForeground": "#0000",
"editorOverviewRuler.infoForeground": "#0000",
"editorOverviewRuler.border": "#0000",
"[cursor-dark]": {
"editorSuggestWidget.selectedBackground": "#333b4b",
}
},
"editor.fontFamily": "Dank Mono",
"editor.fontLigatures": true,
"editor.lineHeight": 2.5,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.stickyScroll.enabled": false,
"editor.codeLens": false,
"editor.lightbulb.enabled": "off",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.autoSave": "afterDelay",
"editor.lineNumbers": "relative",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.showFoldingControls": "never",
"editor.guides.indentation": false,
"editor.renderWhitespace": "none",
"editor.renderLineHighlight": "none",
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.quickSuggestions": {
"other": "on"
},
"editor.suggestOnTriggerCharacters": false,
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "top",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"update.mode": "none",
"extensions.ignoreRecommendations": true
}