Last active
March 25, 2024 01:55
-
-
Save eveporcello/dd7ef08055d03eebbabb0b5f01dd6676 to your computer and use it in GitHub Desktop.
These are the VSCode settings that we use when recording screencast videos ๐ฟ
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
{ | |
"zenMode.hideLineNumbers": false, | |
"workbench.colorTheme": "Night Owl", | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
}, | |
"editor.wordBasedSuggestions": false, | |
"editor.suggestOnTriggerCharacters": false, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"workbench.statusBar.visible": false, | |
"editor.renderLineHighlight": "none", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"workbench.startupEditor": "welcomePage", | |
"editor.minimap.enabled": false, | |
"git.enableSmartCommit": false, | |
"window.zoomLevel": 0, | |
"zenMode.centerLayout": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"html.suggest.html5": false, | |
"editor.parameterHints.enabled": false, | |
"workbench.tips.enabled": false, | |
"editor.lightbulb.enabled": false, | |
"editor.hover.sticky": false, | |
"npm.fetchOnlinePackageInfo": false, | |
"editor.hover.enabled": false, | |
"editor.formatOnSave": true, | |
"workbench.iconTheme": "vs-minimal", | |
"editor.fontSize": 18, | |
"git.enabled": false, | |
"prettier.printWidth": 50, | |
"editor.cursorBlinking": "solid", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"prettier.trailingComma": "none" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment