Last active
November 29, 2019 10:48
-
-
Save dariuszparys/ecf9d2486456fda26796d8bdd861f5ea to your computer and use it in GitHub Desktop.
VSCode
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+u", | |
"command": "editor.action.transformToUppercase" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "editor.action.transformToLowercase" | |
} | |
] |
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.fontFamily": "Cascadia Code", | |
"editor.fontLigatures": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 75 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment