Last active
June 4, 2019 14:46
-
-
Save WesleyGoncalves/4369bcbc8dd2075f482d08695e8cad90 to your computer and use it in GitHub Desktop.
VS Code settings
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
/** | |
* Visual Studio Code settings.json file | |
* Reference: https://code.visualstudio.com/docs/getstarted/settings | |
* | |
* You can download this file | |
* directly to your project from the command-line | |
* curl -O https://gist.githubusercontent.com/WesleyGoncalves/4369bcbc8dd2075f482d08695e8cad90/raw/settings.json | |
* | |
* SOME OTHER OPTIONS: | |
* # Interface | |
* "editor.formatOnPaste": true, | |
* "editor.formatOnSave": true, | |
* "editor.fontFamily": "", | |
* "editor.fontLigatures": true, | |
* # Commands | |
* "editor.acceptSuggestionOnEnter": "off", // Enter = new line | Tab = accept the suggestion | |
* "editor.tabCompletion": , | |
* # | |
* "files.trimFinalNewlines": true, # EditorConfig plugin does this | |
* "files.autoSave": "afterDelay", | |
* "files.autoSaveDelay": 1500, | |
* # Plugins | |
* | |
*/ | |
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 18, | |
"editor.cursorStyle": "underline", | |
"editor.cursorBlinking": "smooth", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.acceptSuggestionOnEnter": "off", | |
"files.eol": "\n", | |
"terminal.integrated.shell.windows": "D:\\Program Files\\Git\\bin\\bash.exe", | |
"liveServer.settings.donotShowInfoMsg": false, | |
"markdownConverter.ConversionType": [ | |
"HTML", | |
"PDF" | |
], | |
"prettier.eslintIntegration": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment