Guest User

Untitled

a guest
Mar 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. {
  2. "editor.fontLigatures": true,
  3. "vscode_custom_css.imports": ["file://home/ins-von/Templates/style.css"],
  4. "editor.insertSpaces": true,
  5. "editor.tabSize": 4,
  6. "editor.renderWhitespace": "all",
  7. "editor.renderIndentGuides": true,
  8. "editor.rulers": [79],
  9. "editor.cursorStyle": "line",
  10.  
  11. "telemetry.enableTelemetry": false,
  12.  
  13. "terminal.integrated.cursorBlinking": true,
  14. "terminal.integrated.scrollback": 10000,
  15. "terminal.external.osxExec": "iTerm.app",
  16. "terminal.external.linuxExec": "guake",
  17. "editor.fontSize": 14,
  18.  
  19. "files.exclude": {
  20. "**/.git" : true,
  21. "**/.svn" : true,
  22. "**/.hg" : true,
  23. "**/.DS_Store" : true,
  24. "**/.github" : true,
  25. "**/*.pyc" : true,
  26. "**/*.egg-info" : true,
  27. "**/.python-version" : true,
  28. "**/__pycache__/**" : true,
  29. "**/.cache" : true,
  30. "**/build" : false,
  31. "**/.tox" : true,
  32. "**/.kitchen" : true,
  33. "**/.vagrant" : true,
  34. "**/venv" : true,
  35. "**/codealike.json" : true,
  36. ".vscode/": true
  37. },
  38. "python.linting.lintOnSave": true,
  39. "files.autoSave": "onFocusChange",
  40. "python.linting.pylintEnabled": false,
  41. "python.linting.flake8Enabled": true,
  42. "python.unitTest.unittestEnabled": false,
  43. "python.unitTest.pyTestEnabled": false,
  44. "python.autoComplete.addBrackets": true,
  45. "workbench.iconTheme": "material-icon-theme",
  46. "editor.minimap.enabled": true,
  47. "workbench.colorCustomizations": {
  48. "statusBar.background": "#353942",
  49. "statusBar.foreground": "#a7a7a7",
  50. "statusBarItem.hoverBackground": "#282c30",
  51. "editorWhitespace.foreground": "#5a534d",
  52. "editorCursor.foreground": "#73fa04",
  53. "editorLineNumber.foreground": "#ff3399",
  54. "activityBarBadge.background": "#FF4081",
  55. "list.activeSelectionForeground": "#FF4081",
  56. "list.inactiveSelectionForeground": "#FF4081",
  57. "list.highlightForeground": "#FF4081",
  58. "scrollbarSlider.activeBackground": "#FF408150",
  59. "editorSuggestWidget.highlightForeground": "#FF4081",
  60. "textLink.foreground": "#FF4081",
  61. "progressBar.background": "#FF4081",
  62. "pickerGroup.foreground": "#FF4081",
  63. "tab.activeBorder": "#FF4081",
  64. "tab.activeBackground": "#282c34",
  65. "activityBar.background": "#282c34",
  66. "editorGroup.background": "#282c34",
  67. "sideBar.background": "#282c35"
  68. },
  69. "editor.fontFamily": "Fira Code",
  70. "materialTheme.cache.workbench.settings": {
  71. "themeColours": "Palenight",
  72. "accent": "Pink",
  73. "accentPrevious": "Cyan"
  74. },
  75. "workbench.colorTheme": "One Dark Pro Vivid",
  76. "git.confirmSync": false,
  77. "material-icon-theme.showUpdateMessage": false,
  78. "window.restoreWindows": "none",
  79. "sublimeTextKeymap.promptV3Features": true,
  80. "editor.multiCursorModifier": "ctrlCmd",
  81. "editor.snippetSuggestions": "top",
  82. "editor.formatOnPaste": true,
  83. "window.zoomLevel": 1,
  84. "workbench.startupEditor": "newUntitledFile",
  85. "gitlens.advanced.messages": {
  86. "suppressCommitHasNoPreviousCommitWarning": false,
  87. "suppressCommitNotFoundWarning": false,
  88. "suppressFileNotUnderSourceControlWarning": false,
  89. "suppressGitVersionWarning": false,
  90. "suppressLineUncommittedWarning": false,
  91. "suppressNoRepositoryWarning": false,
  92. "suppressUpdateNotice": true,
  93. "suppressWelcomeNotice": true
  94. },
  95. "gitlens.codeLens.recentChange.enabled": false,
  96. "gitlens.codeLens.authors.enabled": false,
  97. "git.autofetch": true,
  98. "explorer.confirmDelete": false,
  99. "python.formatting.provider": "none",
  100. "extensions.ignoreRecommendations": false,
  101. "gitlens.keymap": "alternate",
  102. "explorer.confirmDragAndDrop": false,
  103. "explorer.openEditors.visible": 0
  104. }
Add Comment
Please, Sign In to add comment