Last active
June 3, 2021 21:35
-
-
Save skullface/d0396c6f0ffcac330bf75a69b2e79336 to your computer and use it in GitHub Desktop.
Visual Studio 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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.minimap.enabled": false, | |
"editor.renderControlCharacters": false, | |
"workbench.iconTheme": "vs-minimal", | |
"window.zoomLevel": 0, | |
"git.confirmSync": false, | |
"todo-tree.tree.showScanModeButton": false, | |
"workbench.sideBar.location": "right", | |
"workbench.colorTheme": "GitHub Dark", | |
"editor.fontFamily": "Sauce Code Pro Nerd Font Complete, Source Code Pro, Inconsolata, Menlo, 'Courier New', monospace", | |
"editor.fontSize": 13, | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"gitTreeCompare.diffMode": "full", | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.trimAutoWhitespace": false, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": true, | |
"files.exclude": { | |
"**/*.build": true, | |
"**/*.git": true, | |
"**/*.log": true, | |
"**/.DS_Store": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment