Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. {
  2. //-------- Editor configuration --------
  3. "editor.fontFamily": "Menlo, 'Source Code Pro', Hasklig, Monoid, Monaco, 'Courier New', monospace",
  4. "editor.fontSize": 12,
  5. "editor.fontLigatures": false,
  6. "editor.glyphMargin": true,
  7. "editor.rulers": [80, 110],
  8. "editor.tabSize": 2,
  9. "editor.wrappingColumn": 0,
  10. "editor.wrappingIndent": "indent",
  11. "editor.hideCursorInOverviewRuler": false,
  12. "editor.renderWhitespace": true,
  13.  
  14. "diffEditor.renderSideBySide": false,
  15.  
  16. //-------- Window configuration --------
  17. "window.reopenFolders": "all",
  18.  
  19. //-------- Files configuration --------
  20. "files.exclude": {
  21. "**/.git": true,
  22. "**/.svn": true,
  23. "**/.hg": true,
  24. "**/.idea": true,
  25. "**/.DS_Store": true
  26. },
  27.  
  28. //-------- HTML configuration --------
  29. "html.format.maxPreserveNewLines": 1,
  30. "html.format.endWithNewline": true,
  31.  
  32. //-------- Telemetry configuration --------
  33. "telemetry.enableCrashReporter": false,
  34. "telemetry.enableTelemetry": false,
  35.  
  36. //-------- Kha configuration --------
  37. // "kha.khaPath": "/Users/benwaah/lib/haxelib/kha/git",
  38. "kha.ffmpeg": "/Users/benwaah/lib/ffmpeg",
  39.  
  40. //-------- Haxe configuration --------
  41. "haxe.displayArguments": [
  42. "project-debug-html5.hxml",
  43. "test.hxml"
  44. ]
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement