Last active
May 8, 2017 17:37
-
-
Save raloliver/fe5de8e523979edeac3414eb7e99b174 to your computer and use it in GitHub Desktop.
Configurações para o Visual Studio Code como IDE para Javascript
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 characters
| // Place your settings in this file to overwrite the default settings | |
| { | |
| // Controls the font family. | |
| "editor.fontFamily": "Fira Code, Hack, 'Courier New', monospace", | |
| // Controls the font size. | |
| "editor.fontSize": 16, | |
| // Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange". If set to "afterDelay" you can configure the delay in "files.autoSaveDelay". | |
| "files.autoSave": "afterDelay", | |
| // Controls the delay in ms after which a dirty file is saved automatically. Only applies when "files.autoSave" is set to "afterDelay" | |
| "files.autoSaveDelay": 10000, | |
| // Controls whether the editor should render indent guides | |
| "editor.renderIndentGuides": true, | |
| // Editor Font Zooming | |
| "editor.mouseWheelZoom": true, | |
| // Customize which terminal to run on Windows. | |
| "terminal.external.windowsExec": "C:\\Program Files\\GIT\\git-bash.exe", | |
| // The path of the shell that the terminal uses on Windows. | |
| "terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe", | |
| // Controls if lines should wrap. | |
| "editor.wordWrap": true, | |
| "workbench.colorTheme": "Solarized Dark", | |
| "workbench.iconTheme": "vscode-icons", | |
| // Output Directory: .md to PDF | |
| "markdown-pdf.outputDirectory": "C:\\Users\\Dinfo\\Desktop", | |
| // Specify the full path to the TF executable or script to use for TFVC functionality. | |
| "tfvc.location": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\TF.exe", | |
| // Format a file on save, type and paste | |
| "editor.formatOnSave": false, | |
| "editor.formatOnType": false, | |
| "editor.formatOnPaste": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment