kastielspb

VSCode settings

Sep 21st, 2018 (edited)
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.56 KB | None | 0 0
  1. # extentions
  2. [
  3.     "Better Jinja",
  4.     "Bracket Pair Colorizer 2",
  5.     "Django",
  6.     "Django Template",
  7.     "Docker",
  8.     "Docker Compose",
  9.     "Docker WorkSpace",
  10.     "DotENV",
  11.     "Git Graph",
  12.     "Git History",
  13.     "Go",
  14.     "HTML CSS Support",
  15.     "IntelliJ IDEA Keybindings",
  16.     "Jinja",
  17.     # "language-stylus",
  18.     "Markdown Preview Github Styling",
  19.     "NGINX Log Highlighter",
  20.     "Python",
  21.     "RST Preview",
  22.     "Todo Tree",
  23.     "Vetur",
  24.     "VSCode Great Icons",
  25.     "vuetify-vscode",
  26. ]
  27.  
  28. # folder settings
  29. {
  30.     "python.pythonPath": "/home/max/.local/share/virtualenvs/server-UBDFx07I/bin/python",
  31. }
  32.  
  33. # user settings
  34. {
  35.     "files.exclude": {
  36.         "**/.git": true,
  37.         "**/.vscode": true,
  38.         "**/.idea": true,
  39.         "**/.svn": true,
  40.         "**/.hg": true,
  41.         "**/CVS": true,
  42.         "**/.DS_Store": true,
  43.         "**/*.pyc": true,
  44.         "**/__pycache__": true
  45.     },
  46.     "files.autoSave": "off",
  47.     "files.autoSaveDelay": 5000,
  48.     "files.trimTrailingWhitespace": true,
  49.     // "editor.foldingStrategy": "indentation",
  50.     "editor.rulers": [79],
  51.     "editor.multiCursorModifier": "alt",
  52.     "editor.mouseWheelZoom": true,
  53.     "editor.minimap.enabled": false,
  54.     "editor.cursorBlinking": "phase",
  55.     "editor.renderWhitespace": "all",
  56.     "editor.quickSuggestions": {
  57.         "other": true,
  58.         "comments": true,
  59.         "strings": true,
  60.     },
  61.     "editor.semanticHighlighting.enabled": false,
  62.     "explorer.autoReveal": false,
  63.     "debug.internalConsoleOptions": "neverOpen",
  64.     "debug.openDebug": "neverOpen",
  65.     "debug.showInStatusBar": "never",
  66.     "debug.toolBarLocation": "hidden",
  67.     "workbench.iconTheme": "vscode-great-icons",
  68.     "window.title": "${activeEditorMedium}",
  69.  
  70.     "python.linting.pylintEnabled": true,
  71.     "python.linting.enabled": true,
  72.     "python.linting.pylintArgs": [
  73.         "--disable=W0312,C0111,E1101,C0303",
  74.     ],
  75.     "python.venvPath": "/home/wcpc/.local/share/virtualenvs/",
  76.     "python.disableInstallationCheck": true,
  77.     "python.terminal.activateEnvironment": false,
  78.     "python.autoComplete.extraPaths": [
  79.         "${workspaceFolder}",
  80.         "${workspaceFolder}/server",
  81.     ],
  82.     "python.analysis.extraPaths": [
  83.         "${workspaceFolder}",
  84.         "${workspaceFolder}/server"
  85.     ],
  86.     "python.analysis.openFilesOnly": false,
  87.  
  88.     "bracket-pair-colorizer-2.colors": [
  89.         "Lightgreen",
  90.         "Orange",
  91.         "LightSkyBlue",
  92.     ],
  93.     "git.confirmSync": false,
  94.  
  95.     "todo-tree.highlights.customHighlight": {
  96.         "TODO": {
  97.             "background": "#181818",
  98.             "foreground": "#eb6841",
  99.             "iconColour": "#eb6841",
  100.             "type": "teg"
  101.         },
  102.         "FIXME": {
  103.             "background": "#181818",
  104.             "foreground": "#5ebbd6",
  105.             "type": "teg"
  106.         }
  107.     },
  108.     "todo-tree.highlights.defaultHighlight": {
  109.         "foreground": "green",
  110.         "type": "none"
  111.     },
  112.     "workbench.editorAssociations": {
  113.         "*.ipynb": "jupyter-notebook"
  114.     },
  115.     "todo-tree.general.tags": [
  116.         "BUG",
  117.         "HACK",
  118.         "FIXME",
  119.         "TODO",
  120.         "XXX",
  121.         "[ ]",
  122.         "[x]"
  123.     ],
  124.     "todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
  125.     "notebook.cellToolbarLocation": {
  126.         "default": "right",
  127.         "jupyter-notebook": "left"
  128.     }
  129. }
  130.  
  131.  
  132. # keybinds.json
  133. [
  134.     {
  135.         "key": "alt+up",
  136.         "command": "editor.action.insertCursorAbove",
  137.         "when": "editorTextFocus"
  138.     },
  139.     {
  140.         "key": "alt+down",
  141.         "command": "editor.action.insertCursorBelow",
  142.         "when": "editorTextFocus"
  143.     }
  144. ]
Add Comment
Please, Sign In to add comment