
{

    //////////////////////////////////
    // VEX CUSTOM COLORS START
  
    // Visual customizations
    "editor.tokenColorCustomizations": {
    "textMateRules": [
    {
  
    // Following will be in italic
    "scope": [
      "comment",
      "entity.name.type.class", //class names
      "keyword", //import, export, return
      "constant", //String, Number, Boolean, this, super
      "storage.modifier", //static keyword
      "storage.type.class.js", //class keyword
    ],
    "settings": {
    "fontStyle": "italic"
    }
    },
    {
  
    // Following will be excluded from italics (VSCode has some defaults for italics)
    "scope": [
      "invalid",
      "keyword.operator",
      "constant.numeric.css",
      "keyword.other.unit.px.css",
      "constant.numeric.decimal.js",
      "constant.numeric.json"
    ],
    "settings": {
      "fontStyle": ""
    }
    },
    {
  
    // Vex colors like in Houdini
    "scope": [
      "keyword.operator.vex",
      "constant.numeric.vex",
      "punctuation.group.vex",
      "constant.language",            
    ],
    "settings": {
      "foreground": "#CCCCCC"
    }
    },
    {
      "scope": [
      "variable.other.normal.vex",
      "entity.name.tag.vex",
      "keyword.preprocessor.vex",
      "comment.block.preprocessor.vex"
      ],
      "settings": {
      "foreground": "#DEAE6F"
      }
    },
    {
      "scope": [
      "storage.type.builtin.vex",
      "keyword.control.vex",
      "storage.modifier.vex",
      ],
      "settings": {
      "foreground": "#EB76EB"
      }
  },
  {
    "scope": [
    "entity.name.function.vex",
    ],
      "settings": {
      "foreground": "#66CCCC"
    }
  },
  {
    "scope": [
      "comment.line.double-slash.vex",
      ],
      "settings": {
      "foreground": "#EDED77"
    }
  },
  {
    "scope": [
      "string.quoted.double.vex",
      "string.quoted.single.vex",
    ],
    "settings": {
      "foreground": "#66CC66"
    }
  },
  ]
  },

  // VEX END
  ///////////////////////




  "editor.minimap.renderCharacters": true,
  "workbench.colorTheme": "Monokai",
  "breadcrumbs.enabled": false,
  "editor.smoothScrolling": true,
  "editor.multiCursorModifier": "ctrlCmd",
  "window.menuBarVisibility": "default",
  "editor.occurrencesHighlight": "off",
  "customWindowZoom.zoomLevelChangeValue": 0.1,
  "editor.cursorWidth": 3,
  "workbench.startupEditor": "newUntitledFile",
  "workbench.colorCustomizations": {
    // "editorPane.background": "#1e1f1c",
    // "contrastActiveBorder": "#5286d5",
    "tab.activeBackground":  "#34352f",
    "tab.inactiveBackground":  "#1e1f1c",
    // "tab.inactiveBackground":  "#272822",
    // "selection.background":"#00AA00"
  },
  "saveBackup.conf.backupDir": "C:/Users/info/OneDrive/Documents/VS Code Auto Backups",
  "workbench.iconTheme": "file-icons",
  "window.newWindowDimensions": "inherit",
  "editor.fontSize": 12,
  "python.formatting.provider": "black",

  // jtomori:
  "python.autoComplete.extraPaths": [ "C:/Program Files/Side Effects Software/Houdini 18.0.353/houdini/python2.7libs/hou.py" ],
  "python.autoComplete.preloadModules": [
    "hou"
  ],
  "files.defaultLanguage": "plaintext",
  "workbench.editorAssociations": {
    "*.ipynb": "jupyter.notebook.ipynb"
  },
  "zenMode.hideLineNumbers": false,
  "python.analysis.extraPaths": [
    "C:/Program Files/Side Effects Software/Houdini 18.0.353/houdini/python2.7libs/hou.py"
  ],
  "editor.minimap.enabled": false,
  "toggleCase.case.camelCase": false,
  "toggleCase.case.constantCase": false,
  "toggleCase.case.headerCase": false,
  "toggleCase.case.kebabCase": false,
  "toggleCase.case.pathCase": false,
  "toggleCase.case.sentenceCase": false,
  "toggleCase.case.snakeCase": false,
  "toggleCase.case.pascalCase": false,
  "toggleCase.case.dotCase": false,
  "toggleCase.case.capitalCase": false,
  "toggleCase.notification.notifyOnChange": false,
  "workbench.sideBar.location": "right",
  "security.workspace.trust.untrustedFiles": "open",
  "python.defaultInterpreterPath": "c:\\Program Files\\Side Effects Software\\Houdini 19.5.416\\bin\\hython3.9.exe"
  
}