Skip to content

Instantly share code, notes, and snippets.

@tom-henderson
Created February 2, 2018 07:02
Show Gist options
  • Select an option

  • Save tom-henderson/27c8f0df2a9e032c9bfecceeffe98389 to your computer and use it in GitHub Desktop.

Select an option

Save tom-henderson/27c8f0df2a9e032c9bfecceeffe98389 to your computer and use it in GitHub Desktop.

Revisions

  1. tom-henderson created this gist Feb 2, 2018.
    36 changes: 36 additions & 0 deletions vs_code_settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,36 @@
    // Place your settings in this file to overwrite the default settings
    {
    // General Appearance
    "window.zoomLevel": 0,
    "workbench.colorTheme": "Tomorrow_Night",
    "workbench.iconTheme": "vs-seti",
    "workbench.startupEditor": "welcomePage",

    // Editor
    "editor.selectionHighlight": true,
    "editor.wordWrap": "off",
    "editor.renderWhitespace": "all",
    "editor.minimap.enabled": false,
    "editor.minimap.renderCharacters": false,

    // Integrated Terminal
    "terminal.integrated.shellArgs.osx": ["-l"],

    // File Associations
    "files.associations": {
    ".terragrunt": "terraform",
    "*.tfstate": "json",
    "*.tfstate.backup": "json"
    },

    "markdown.preview.scrollPreviewWithEditorSelection": false,
    "markdown.preview.scrollEditorWithPreview": false,

    "python.pythonPath": "python3.6",
    "zenMode.hideActivityBar": false,
    "extensions.ignoreRecommendations": false,

    "[terraform]": {
    "editor.formatOnSave": true
    }
    }