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.

34 lines
893 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. "**/*.uf2": true
  11. },
  12. "files.associations": {
  13. "*.h": "c",
  14. "*.c": "c",
  15. "*.inc": "c",
  16. "*.cpp": "cpp",
  17. "*.hpp": "cpp",
  18. "xstddef": "c",
  19. "type_traits": "c",
  20. "utility": "c",
  21. "ranges": "c"
  22. },
  23. "[markdown]": {
  24. "editor.trimAutoWhitespace": false,
  25. "files.trimTrailingWhitespace": false
  26. },
  27. "python.formatting.provider": "yapf",
  28. "[json]": {
  29. "editor.formatOnSave": false
  30. },
  31. "clangd.arguments": [
  32. "--header-insertion=never"
  33. ]
  34. }