Skip to content

Instantly share code, notes, and snippets.

@crazy4pi314
Created August 2, 2022 19:22
Show Gist options
  • Save crazy4pi314/3fbdd49c22ccebb39933ebcab6ba75eb to your computer and use it in GitHub Desktop.
Save crazy4pi314/3fbdd49c22ccebb39933ebcab6ba75eb to your computer and use it in GitHub Desktop.
VS Code Screencast Settings
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"editor.fontSize": 14,
"editor.lineHeight": 22,
"window.zoomLevel": 4,
"editor.formatOnSave": false,
"editor.lineNumbers": "off",
"editor.quickSuggestionsDelay": 1000,
"editor.hover.enabled": false,
"gitlens.mode.active": "zen",
"breadcrumbs.enabled": false,
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"workbench.colorTheme": "Dracula",
"editor.wordWrap": "on",
"screencastMode.onlyKeyboardShortcuts": true,
"screencastMode.mouseIndicatorSize": 50,
"screencastMode.mouseIndicatorColor": "#FFFFFF",
"window.title": "${dirty}${activeEditorMedium}${separator}${remoteName}",
"window.titleSeparator": " | "
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"donjayamanne.githistory",
"donjayamanne.python-environment-manager",
"dracula-theme.theme-dracula",
"esbenp.prettier-vscode",
"GitHub.codespaces",
"GitHub.vscode-pull-request-github",
"mechatroner.rainbow-csv",
"mhutchie.git-graph",
"mintchipleaf.fairyfloss",
"mohsen1.prettify-json",
"ms-azuretools.vscode-azureappservice",
"ms-azuretools.vscode-azurefunctions",
"ms-azuretools.vscode-azureresourcegroups",
"ms-azuretools.vscode-azurestaticwebapps",
"ms-azuretools.vscode-azurestorage",
"ms-azuretools.vscode-azurevirtualmachines",
"ms-azuretools.vscode-cosmosdb",
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.vscode-ai",
"ms-toolsai.vscode-ai-remote",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh",
"ms-vscode-remote.remote-ssh-edit",
"ms-vscode-remote.remote-wsl",
"ms-vscode-remote.vscode-remote-extensionpack",
"ms-vscode.azure-account",
"ms-vscode.azurecli",
"ms-vscode.cpptools",
"ms-vscode.remote-repositories",
"ms-vscode.vscode-node-azure-pack",
"ms-vsliveshare.vsliveshare",
"ms-vsliveshare.vsliveshare-pack",
"naumovs.color-highlight",
"redhat.vscode-yaml",
"ritwickdey.LiveServer",
"streetsidesoftware.code-spell-checker",
"wayou.vscode-todo-highlight"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment