From 2effab0e4f679b121e1ed67afe125435d4d25088 Mon Sep 17 00:00:00 2001 From: Sualeh Fatehi Date: Tue, 7 May 2024 18:59:01 -0400 Subject: [PATCH] Add VSCode settings --- Notebooks/.vscode/extensions.json | 18 +++++++++++++++ Notebooks/.vscode/settings.json | 38 +++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 Notebooks/.vscode/extensions.json create mode 100644 Notebooks/.vscode/settings.json diff --git a/Notebooks/.vscode/extensions.json b/Notebooks/.vscode/extensions.json new file mode 100644 index 0000000..e74bdb8 --- /dev/null +++ b/Notebooks/.vscode/extensions.json @@ -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": [] +} diff --git a/Notebooks/.vscode/settings.json b/Notebooks/.vscode/settings.json new file mode 100644 index 0000000..8982f24 --- /dev/null +++ b/Notebooks/.vscode/settings.json @@ -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 +} \ No newline at end of file