VisualStudioCode-初始配置


插件

  1. Bracket Pair Colorizer
  2. C/C++
  3. C/C++ Clang command Adapter
  4. dimmed-monokai Theme
  5. filesize
  6. Include Autocomplete
  7. Markdown PDF
  8. markdownlint
  9. Path Intellisense
  10. Python
  11. Sublime Text Keymap
  12. Vim
  13. VScode Great Icons
  14. vscode-fileheader
  15. vscode-icons

用户设置

{
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    "editor.formatOnPaste": true,
    "git.enabled": false,
    "workbench.colorTheme": "Visual Studio Dark",
    "editor.fontSize": 16,
    "editor.detectIndentation": false,
    "editor.renderWhitespace": "boundary",
    //"editor.fontFamily": "'Courier New', Consolas monospace",
    "python.pythonPath": "D:/windows/WinPython-64bit-3.6.3.0Qt5/python-3.6.3.amd64/python",
    "python.linting.pylintEnabled": false,
    "editor.tabSize":4,
    "editor.insertSpaces": true,
    "editor.trimAutoWhitespace": true,
    "files.trimTrailingWhitespace": true,
    "files.autoSave": "afterDelay",
    "explorer.confirmDelete": false,
    "java.errors.incompleteClasspath.severity": "ignore"
}

你可能感兴趣的:(Tools)