Last active
April 1, 2024 01:40
-
-
Save charlesfranciscodev/4a4915ecc13e28a3624ca9491f28fe9e to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains 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
{ | |
"[python]": { | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true | |
}, | |
"editor.fontFamily": "Source Code Pro, DejaVu Sans Mono, Fira Code", | |
"editor.fontSize": 18, | |
"editor.minimap.enabled": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.renderWhitespace": "boundary", | |
"editor.rulers": [ | |
120 | |
], | |
"editor.wordWrap": "on", | |
"extensions.ignoreRecommendations": true, | |
"github.copilot.enable": { | |
"*": true, | |
"markdown": true, | |
"plaintext": true | |
}, | |
"search.useGlobalIgnoreFiles": true, | |
"security.workspace.trust.enabled": false, | |
"terminal.integrated.fontSize": 16, | |
"workbench.editor.closeOnFileDelete": true, | |
"workbench.editor.empty.hint": "hidden", | |
"workbench.editor.enablePreview": false, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "welcomePage" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment