Choose from PyCharm Dark+ Theme or Darcula PyCharm Theme.
Command Palette (Cmd+Shift+P) -> type: settings json
Paste the following:
{
"telemetry.telemetryLevel": "off",
"python.createEnvironment.trigger": "off",
"workbench.startupEditor": "none",
"makefile.configureOnOpen": true,
"editor.rulers": [80, 120],
"files.exclude": {
"**/__pycache__": true,
"**/.idea": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/.vscode": true,
"**/*.py,cover": true,
"**/htmlcov": true,
"**/*.egg-info": true
},
"workbench.colorTheme": "PyCharm Dark+ Theme",
"github.copilot.nextEditSuggestions.enabled": true,
"git.enableSmartCommit": true,
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "always",
"editor.fontSize": 14,
"containers.containerClient": "com.microsoft.visualstudio.containers.docker",
"containers.orchestratorClient": "com.microsoft.visualstudio.orchestrators.dockercompose",
"makefile.configureOnOpen": true,
"github.gitAuthentication": false,
"git.terminalAuthentication": false
}