Skip to content

Instantly share code, notes, and snippets.

@BIGBALLON
Last active July 24, 2020 22:27
Show Gist options
  • Save BIGBALLON/c51c25fdb394f66321272f76ecaefc3d to your computer and use it in GitHub Desktop.
Save BIGBALLON/c51c25fdb394f66321272f76ecaefc3d to your computer and use it in GitHub Desktop.
VS code setting for my ubuntu
  • extensions(插件):
    • C/C++
    • Python
    • Markdown All in One
    • Dracula Official
    • GitLens
  • settings:
    • Editor: Render Whitespace
      • boundary
    • Mouse Wheel Zoom
    • Render Control Characters
    • Format On Save
    • Files: Eol
      • '\n'
{
    "[python]": {
        "editor.codeActionsOnSave": {
            "source.organizeImports": true
        }
    },
    "editor.renderWhitespace": "boundary",
    "python.formatting.provider": "black",
    "editor.formatOnSave": true,
    "workbench.colorTheme": "Dracula",
    "[cpp]": {
        "editor.wordBasedSuggestions": false,
        "editor.suggest.insertMode": "replace",
        "editor.semanticHighlighting.enabled": true
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment