Skip to content

Instantly share code, notes, and snippets.

@bvanderlaan
Last active December 30, 2017 00:46
Show Gist options
  • Save bvanderlaan/9872f0a3760a4690ad51805a95571975 to your computer and use it in GitHub Desktop.
Save bvanderlaan/9872f0a3760a4690ad51805a95571975 to your computer and use it in GitHub Desktop.
My VS Code Settings

I use VS Code across a few machines, to make sure my settings are the same on each I'm posting them here. If your not me but find this useful then 👍

// Place your settings in this file to overwrite the default settings
{
    "files.associations" : {
        "*.ejs" : "html"
    },
    "files.insertFinalNewline": true,
    "files.trimTrailingWhitespace": true,
    "editor.rulers" : [80,100,200],
    "editor.tabSize": 2,
    "editor.detectIndentation": false,
    "editor.minimap.enabled": true,
    "editor.minimap.renderCharacters": true,
    "eslint.autoFixOnSave": false,
    "window.zoomLevel": 0,
    "cSpell.userWords": [
      "Laan",
      "behaviour",
      "buynan",
      "datetime",
      "restify",
      "signin",
      "signup",
      "syslog"
    ],
    "powermode.enabled": true,
    "todohighlight.exclude": "{**/node_modules/**,**/bower_components/**,**/dist/**,**/build/**,**/.vscode/**,**/_output/**,**/*.min.*,**/*.map,**/.tmp}",
    "todohighlight.isCaseSensitive": false,
    "todohighlight.keywords": [
        {
            "text": "TODO",
            "color": "blue",
            "backgroundColor": "yellow",
            "overviewRulerColor": "grey"
        },
        {
            "text": "FIXME",
            "color": "black",
            "backgroundColor": "pink",
            "overviewRulerColor": "grey"
        },
        {
            "text": "HACK",
            "color": "white",
            "backgroundColor": "red",
            "overviewRulerColor": "grey"
        },
        {
            "text": "it('will",
            "color": "white",
            "backgroundColor": "orange",
            "overviewRulerColor": "grey"
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment