Last active
March 3, 2024 08:28
-
-
Save lcrespom/90cf85c054611b57a3b24c4a5a2047fb to your computer and use it in GitHub Desktop.
My VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.colorTheme": "Monokai", | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.fontSize": 14, | |
| "redhat.telemetry.enabled": false, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true, | |
| "security.promptForLocalFileProtocolHandling": false, | |
| "[sql]": { | |
| "editor.defaultFormatter": "adpyke.vscode-sql-formatter" | |
| }, | |
| "svelte.enable-ts-plugin": true, | |
| "notebook.output.wordWrap": true, | |
| "terminal.integrated.inheritEnv": false, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.preferredDarkColorTheme": "Monokai", | |
| "workbench.preferredLightColorTheme": "Default Light+", | |
| "explorer.fileNesting.enabled": true, | |
| "cmake.configureOnOpen": true, | |
| "editor.linkedEditing": true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Basic | |
| esbenp.prettier-vscode | |
| rangav.vscode-thunder-client | |
| editorconfig.editorconfig | |
| visualstudioexptteam.intellicode-api-usage-examples | |
| visualstudioexptteam.vscodeintellicode | |
| # Look and feel | |
| fooxly.themeswitch | |
| pkief.material-icon-theme | |
| # Framework support | |
| svelte.svelte-vscode | |
| # 3rd party integration | |
| ms-azuretools.vscode-docker | |
| ms-vscode-remote.remote-containers | |
| # Language support | |
| # ----- SQL ----- | |
| adpyke.vscode-sql-formatter | |
| # ----- Python ----- | |
| ms-python.debugpy | |
| 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 | |
| # ----- C, C++ ----- | |
| ms-vscode.cmake-tools | |
| ms-vscode.cpptools | |
| ms-vscode.cpptools-extension-pack | |
| ms-vscode.cpptools-themes | |
| twxs.cmake | |
| # ----- Java ----- | |
| redhat.java | |
| vscjava.vscode-java-debug | |
| vscjava.vscode-java-dependency | |
| vscjava.vscode-java-pack | |
| vscjava.vscode-java-test | |
| vscjava.vscode-maven |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment