This repository was archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPCS.code-workspace
More file actions
44 lines (44 loc) · 1.48 KB
/
APCS.code-workspace
File metadata and controls
44 lines (44 loc) · 1.48 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.fontSize": 12,
"editor.tabSize": 2,
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "boundary",
// Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.smoothScrolling": true,
"editor.mouseWheelZoom": false,
"editor.rulers": [80],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true
},
"files.trimTrailingWhitespace": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\bash.exe",
"terminal.integrated.fontSize": 12,
"window.zoomLevel": 0,
"window.autoDetectHighContrast": true,
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}",
"workbench.colorTheme": "Visual Studio Dark",
"workbench.iconTheme": "vscode-icons",
"workbench.sideBar.location": "left",
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f"
},
"vim.useSystemClipboard": true,
"vim.hlsearch": true,
"vim.searchHighlightColor": "rgba(255,0,0,0)",
"terminal.integrated.rendererType": "dom",
"explorer.confirmDragAndDrop": false,
"git.autofetch": true
}
}