https://dev.to/jsjoeio/how-to-create-code-profiles-in-vscode-3ofo
Created
September 20, 2020 18:30
-
-
Save chadly/45658b8b5a14a9fbb86cf62f4056bfac to your computer and use it in GitHub Desktop.
VS Code Screencast Profile
This file contains 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
alias codecast="code --user-data-dir ~/code_profiles/screencast/data" |
This file contains 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
{ | |
"editor.insertSpaces": false, | |
"editor.detectIndentation": true, | |
"editor.codeLens": false, | |
"editor.quickSuggestions": false, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.quickSuggestionsDelay": 10, | |
"editor.wordBasedSuggestions": false, | |
"editor.autoClosingBrackets": "never", | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.parameterHints.enabled": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontFamily": "Fira Code", | |
"terminal.integrated.fontSize": 17, | |
"workbench.iconTheme": "vscode-icons", | |
"prettier.useTabs": true, | |
"window.zoomLevel": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment