You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
796 B

  1. // Place your settings in this file to overwrite default and user settings.
  2. {
  3. // Unofficially, QMK uses spaces for indentation
  4. "editor.insertSpaces": true,
  5. // Configure glob patterns for excluding files and folders.
  6. "files.exclude": {
  7. "**/.build": true,
  8. "**/*.hex": true,
  9. "**/*.bin": true
  10. },
  11. "files.associations": {
  12. "*.h": "c",
  13. "*.c": "c",
  14. "*.inc": "c",
  15. "*.cpp": "cpp",
  16. "*.hpp": "cpp",
  17. "xstddef": "c",
  18. "type_traits": "c",
  19. "utility": "c",
  20. "ranges": "c"
  21. },
  22. "[markdown]": {
  23. "editor.trimAutoWhitespace": false,
  24. "files.trimTrailingWhitespace": false
  25. },
  26. "python.formatting.provider": "yapf",
  27. "[json]": {
  28. "editor.formatOnSave": false
  29. }
  30. }