Last active
December 16, 2016 17:07
-
-
Save kunzimariano/2fef917f58b58663047bc6e4c082b6d5 to your computer and use it in GitHub Desktop.
Revisions
-
kunzimariano revised this gist
Dec 16, 2016 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ //user // Place your settings in this file to overwrite the default settings { // Controls the font size. @@ -23,7 +22,7 @@ user } //workspace // Place your settings in this file to overwrite default and user settings. { "search.exclude": { -
kunzimariano renamed this gist
Dec 16, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
kunzimariano created this gist
Dec 16, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 }