Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. // Place your settings in this file to overwrite the default settings
  2. {
  3.  
  4. "window.title": "${rootPath}${separator}${activeEditorName}${separator}${appName}",
  5.  
  6. // editor
  7. "editor.fontSize": 17,
  8. "editor.formatOnSave": false,
  9. "editor.tabSize": 2,
  10. "editor.tabCompletion": true,
  11. "editor.wordWrap": "on",
  12. "editor.wrappingIndent": "indent",
  13.  
  14. // files
  15. "files.trimTrailingWhitespace": true,
  16. "files.autoSave": "off",
  17.  
  18. // terminal
  19. "terminal.integrated.fontSize": 17,
  20. "window.zoomLevel": 0,
  21. "workbench.colorTheme": "Cobalt2",
  22. "workbench.iconTheme": "vs-seti",
  23. "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\cmd.exe",
  24. "sublimeTextKeymap.promptV3Features": true,
  25. "editor.multiCursorModifier": "ctrlCmd",
  26. "editor.snippetSuggestions": "top",
  27. "editor.formatOnPaste": true,
  28. "gitlens.advanced.messages": {
  29. "suppressCommitHasNoPreviousCommitWarning": false,
  30. "suppressCommitNotFoundWarning": false,
  31. "suppressFileNotUnderSourceControlWarning": false,
  32. "suppressGitVersionWarning": false,
  33. "suppressLineUncommittedWarning": false,
  34. "suppressNoRepositoryWarning": false,
  35. "suppressUpdateNotice": false,
  36. "suppressWelcomeNotice": true
  37. },
  38. "editor.accessibilitySupport": "off",
  39. "vsicons.dontShowNewVersionMessage": true,
  40. "editor.renderWhitespace": "all",
  41. "files.insertFinalNewline": true,
  42. "editor.useTabStops": true
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement