-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.json
149 lines (140 loc) · 5.48 KB
/
vscode.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
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
140
141
142
143
144
145
146
147
148
149
{
"terminal.integrated.fontSize": 14.055,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.letterSpacing": 0.5,
"terminal.integrated.fontFamily": "SF Mono",
"terminal.integrated.enablePersistentSessions": true,
"terminal.integrated.persistentSessionReviveProcess": "onExit",
"workbench.editor.restoreViewState": true,
"workbench.colorTheme": "Vesper",
"workbench.settings.editor": "ui",
"workbench.sideBar.location": "right",
"workbench.iconTheme": "chalice-icon-theme",
"workbench.startupEditor": "none",
"workbench.layoutControl.enabled": false,
"breadcrumbs.enabled": false,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"editor.wordWrap": "bounded",
"editor.tabSize": 2,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "SF Mono",
"editor.fontSize": 15.255,
"editor.scrollbar.vertical": "hidden",
"window.commandCenter": false,
"window.restoreFullscreen": true,
"window.restoreWindows": "all",
"window.newWindowDimensions": "offset",
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "native",
"apc.font.family": "SF Mono",
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 20
},
"apc.statusBar": {
"position": "editor-bottom",
"height": 20,
"fontFamily": "SF Mono",
"fontSize": 10
},
"apc.electron": {
"titleBarStyle": "hidden",
"frame": false,
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.header": {
"height": 26,
"fontSize": 12
},
"apc.listRow": {
"height": 21,
"fontSize": 12
},
"apc.stylesheet": {
".inline-tabs-placeholder": "display: none !important;",
".monaco-hover": "border: 1px solid #007ACC !important;",
".tree": "border: 1px solid #007ACC !important;",
".quick-input-widget": {
"width": "900px !important",
"left": "41% !important",
"top": "250px !important",
"padding": "15px !important",
"background-color": "rgb(30, 30, 30) !important",
"border-radius": "10px !important",
"border": "1px solid #007ACC !important"
},
".quick-input-widget .quick-input-header": "padding:0px!important;margin-bottom:10px;",
".quick-input-widget .monaco-inputbox": {
"padding": "10px !important",
"border-radius": "5px!important"
},
".quick-input-widget .monaco-list-rows": "top: 0 !important;max-height:670px;min-height:300px;",
".quick-input-widget .monaco-list-row": "position:static!important;border-bottom: 1px solid #333942;padding:5px!important;height:auto!important;",
".quick-input-widget .quick-input-list-entry": "position:relative;padding:0 5px 0px 15px;",
".quick-input-widget .quick-input-list-entry .codicon[class*=codicon-]": "font-size:12px;",
".quick-input-widget .quick-input-list .quick-input-list-entry.quick-input-list-separator-border": "border-top-width:0px!important;",
".monaco-editor .cursor": "background: linear-gradient(to bottom, #FFFFFF, #FFFFFF) !important; color: #161616 !important",
".title-actions": "display: none !important",
".quick-input-widget.show-file-icons, .editor-widget.find-widget": "box-shadow: none !important",
".filematch .monaco-icon-label:before, .custom-list-row.results .monaco-list-row .monaco-icon-label:before": "background-position: 0 bottom !important",
".filematch .monaco-count-badge": "padding: 5px 6px 0 6px !important",
".sidebar .title-label": "padding: 0 !important",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "outline: none !important",
".sidebar": "border: none !important",
".quick-input-list-row div": "display: flex !important; align-items: center !important",
".panel .composite.title": "visibility: hidden !important",
".title.show-file-icons .label-container .monaco-icon-label.file-icon": "padding-bottom: 6px !important",
".sidebar .title-label h2": "line-height: 2.8 !important",
".monaco-editor .scroll-decoration": "display: none !important",
".monaco-scrollable-element > .shadow.top": "display: none !important",
".editor-group-watermark": {
"font-size": "15px !important"
}
},
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"typescript.updateImportsOnFileMove.enabled": "never",
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
// used by the toggle excluded files extension
"files.exclude": {
"**/.open-next": true,
"**/.sst": true,
"**/.nx": true,
"**/.turbo": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/.husky": true,
"**/.github": true,
"**/.gitignore": true,
"**/dist": true,
"**/.next": true,
"**/*.tsbuildinfo": true,
"**/.astro": true
},
"C_Cpp.default.compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
"redhat.telemetry.enabled": false,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
"code-runner.runInTerminal": true,
"git.openRepositoryInParentFolders": "always",
"github.copilot.editor.enableAutoCompletions": true,
"git.ignoreMissingGitWarning": true
}