Skip to content

Commit d2ae701

Browse files
Add files via upload
1 parent ec1c66c commit d2ae701

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

devcontainer/devcontainer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"customizations": {
3+
"codespaces": {
4+
"openFiles": [
5+
"README.md"
6+
]
7+
},
8+
"vscode": {
9+
// Set *default* container specific settings.json values on container create.
10+
"settings": {
11+
"terminal.integrated.shell.linux": "/bin/bash"
12+
},
13+
// Add the IDs of extensions you want installed when the container is created.
14+
"extensions": [
15+
"linkedinlearning.linkedinlearning-vscode-theme"
16+
]
17+
}
18+
},
19+
// Update welcome text and set terminal prompt to '$ '
20+
"onCreateCommand": "echo PS1='\"$ \"' >> ~/.bashrc",
21+
// Pull all branches
22+
"postAttachCommand": "git pull --all"
23+
}
24+
// DevContainer Reference: https://code.visualstudio.com/docs/remote/devcontainerjson-reference

vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"editor.bracketPairColorization.enabled": true,
3+
"editor.cursorBlinking": "solid",
4+
"editor.fontFamily": "ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace",
5+
"editor.fontLigatures": false,
6+
"editor.fontSize": 22,
7+
"editor.formatOnPaste": true,
8+
"editor.formatOnSave": true,
9+
"editor.lineNumbers": "on",
10+
"editor.matchBrackets": "always",
11+
"editor.minimap.enabled": false,
12+
"editor.smoothScrolling": true,
13+
"editor.tabSize": 2,
14+
"editor.useTabStops": true,
15+
"emmet.triggerExpansionOnTab": true,
16+
"files.autoSave": "afterDelay",
17+
"terminal.integrated.fontSize": 18,
18+
"workbench.colorTheme": "LinkedIn Learning Dark",
19+
"workbench.fontAliasing": "antialiased",
20+
"workbench.statusBar.visible": true
21+
}

0 commit comments

Comments
 (0)