Skip to content

Instantly share code, notes, and snippets.

@barseghyanartur
Last active January 13, 2026 00:38
Show Gist options
  • Select an option

  • Save barseghyanartur/4ecebab0b626234f4a5125a4ab43187f to your computer and use it in GitHub Desktop.

Select an option

Save barseghyanartur/4ecebab0b626234f4a5125a4ab43187f to your computer and use it in GitHub Desktop.
VS Code for Pycharm devs - look&feel tweaks

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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment