Skip to content

Commit

Permalink
Add VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed May 7, 2024
1 parent 6668363 commit 2effab0
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Notebooks/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"recommendations": [
"bierner.markdown-footnotes",
"EditorConfig.EditorConfig",
"Katsute.settings-repository",
"ms-python.black-formatter",
"ms-python.pylint",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.vscode-jupyter-cell-tags",
"ms-toolsai.vscode-jupyter-slideshow",
"zeshuaro.vscode-python-poetry"
],
"unwantedRecommendations": []
}
38 changes: 38 additions & 0 deletions Notebooks/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"workbench.colorTheme": "Default Light Modern",
"[markdown]": {
"files.trimTrailingWhitespace": false,
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"editor.foldingImportsByDefault": true,
"editor.lineHeight": 24,
"editor.minimap.enabled": false,
"editor.overviewRulerBorder": false,
"editor.tabSize": 2,
"editor.wrappingIndent": "indent",
"files.defaultLanguage": "markdown",
"files.exclude": {
"**/node_modules": true
},
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.enableCommitSigning": true,
"git.enableSmartCommit": true,
"git.postCommitCommand": "sync",
"git.showActionButton": {
"commit": false,
"publish": false,
"sync": false
},
"markdown.preview.breaks": true,
"workbench.editor.enablePreview": false,
"workbench.editorAssociations": {
"*.md": "vscode.markdown.preview.editor"
},
"scm.showActionButton": false,
"scm.showInputActionButton": false
}

0 comments on commit 2effab0

Please sign in to comment.