Advertisement
Guest User

Untitled

a guest
Jul 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. {
  2. "window.zoomLevel": 1,
  3. "editor.multiCursorModifier": "ctrlCmd",
  4. "python.pythonPath": "python3",
  5. "explorer.confirmDragAndDrop": false,
  6. // "python.linting.pylintPath": "/Users/wilfriedgrondin/miniconda3/envs/DjangoEnv/bin/pylint",
  7. "python.linting.pylintArgs": [
  8. "--load-plugins",
  9. "pylint_django",
  10. "--disable=all",
  11. "--enable=F,E,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode"
  12. ],
  13. "files.insertFinalNewline": true,
  14. "ruby.lint": {
  15. "rubocop": false,
  16. "ruby": false, //Runs ruby -wc
  17. "ruby-lint": false,
  18. },
  19.  
  20. "gitlens.advanced.messages": {
  21. "suppressShowKeyBindingsNotice": true
  22. },
  23. "gitlens.hovers.currentLine.over": "line",
  24. "gitlens.codeLens.enabled": false,
  25. "gitlens.historyExplorer.enabled": false,
  26. "ruby.intellisense": "rubyLocate",
  27.  
  28. "emmet.includeLanguages": {
  29. "html.erb": "html",
  30. "erb": "html"
  31. },
  32.  
  33. "material-icon-theme.folders.theme": "specific",
  34. "material-icon-theme.folders.color": "#90a4ae",
  35. "material-icon-theme.activeIconPack": "angular",
  36. "editor.rulers": [
  37. 80,
  38. 100,
  39. 120
  40. ],
  41. "ruby.codeCompletion": "rcodetools",
  42.  
  43. "files.trimTrailingWhitespace": true,
  44. "editor.acceptSuggestionOnEnter": "off",
  45. "gitlens.gitExplorer.location": "explorer",
  46. "gitlens.gitExplorer.view": "repository",
  47. "editor.tabSize": 2,
  48. "workbench.statusBar.feedback.visible": false,
  49. "workbench.colorTheme": "Dracula",
  50. "workbench.iconTheme": "material-icon-theme",
  51. "vsicons.projectDetection.disableDetect": true,
  52. "terminal.integrated.fontFamily": "Hack Nerd Font",
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement