VS Code for Pycharm users

1. Install PyCharm theme

Choose from PyCharm Dark+ Theme or Darcula PyCharm Theme.

2. Adjust user settings

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
}

Originally published as GitHub Gist #4ecebab0b626234f4a5125a4ab43187f

Comments

social