2
0

settings.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "files.autoSave": "onFocusChange",
  3. "files.insertFinalNewline": true,
  4. "workbench.colorTheme": "Atom One Dark",
  5. "editor.formatOnSave": true,
  6. "editor.fontFamily": "source code pro",
  7. "editor.mouseWheelZoom": true,
  8. "editor.codeActionsOnSave": {
  9. "source.fixAll.eslint": true
  10. },
  11. "editor.defaultFormatter": "esbenp.prettier-vscode",
  12. // https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc
  13. "files.watcherExclude": {
  14. "**/.git/**": true,
  15. "**/node_modules/**": true
  16. },
  17. "[cpp]": {
  18. "editor.defaultFormatter": "ms-vscode.cpptools"
  19. },
  20. "[rust]": {
  21. "editor.defaultFormatter": "rust-lang.rust-analyzer"
  22. },
  23. "[proto3]": {
  24. "editor.defaultFormatter": "zxh404.vscode-proto3"
  25. },
  26. "[xml]": {
  27. "editor.defaultFormatter": "redhat.vscode-xml"
  28. },
  29. "[python]": {
  30. "editor.defaultFormatter": "ms-python.python"
  31. },
  32. "[php]": {
  33. "editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
  34. }
  35. }