Skip to content

Instantly share code, notes, and snippets.

@charlesfranciscodev
Last active April 1, 2024 01:40
Show Gist options
  • Save charlesfranciscodev/4a4915ecc13e28a3624ca9491f28fe9e to your computer and use it in GitHub Desktop.
Save charlesfranciscodev/4a4915ecc13e28a3624ca9491f28fe9e to your computer and use it in GitHub Desktop.
VS Code Settings
{
"[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