Skip to content

Instantly share code, notes, and snippets.

@kunzimariano
Last active December 16, 2016 17:07
Show Gist options
  • Select an option

  • Save kunzimariano/2fef917f58b58663047bc6e4c082b6d5 to your computer and use it in GitHub Desktop.

Select an option

Save kunzimariano/2fef917f58b58663047bc6e4c082b6d5 to your computer and use it in GitHub Desktop.

Revisions

  1. kunzimariano revised this gist Dec 16, 2016. 1 changed file with 2 additions and 3 deletions.
    5 changes: 2 additions & 3 deletions configs.json
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,4 @@
    user

    //user
    // Place your settings in this file to overwrite the default settings
    {
    // Controls the font size.
    @@ -23,7 +22,7 @@ user
    }


    workspace
    //workspace
    // Place your settings in this file to overwrite default and user settings.
    {
    "search.exclude": {
  2. kunzimariano renamed this gist Dec 16, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. kunzimariano created this gist Dec 16, 2016.
    35 changes: 35 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,35 @@
    user

    // Place your settings in this file to overwrite the default settings
    {
    // Controls the font size.
    "editor.fontSize": 17,
    // The number of spaces a tab is equal to.
    "editor.tabSize": 2,
    // Controls whether the editor should render whitespace characters
    "editor.renderWhitespace": true,
    // Controls whether the editor should render control characters
    "editor.renderControlCharacters": true,
    // Controls whether the editor should render indent guides
    "editor.renderIndentGuides": true,
    // Number of editors shown in the Open Editors pane. Set it to 0 to hide the pane.
    "explorer.openEditors.visible": 0,
    // Controls if opened editors from quick open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing).
    "workbench.editor.enablePreviewFromQuickOpen": false,
    // Defines space handling after keywords in control flow statement
    "javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
    // Defines space handling after function keyword for anonymous functions
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false
    }


    workspace
    // Place your settings in this file to overwrite default and user settings.
    {
    "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/coverage": true
    },
    "html.format.endWithNewline": true
    }