Created
February 1, 2021 22:36
-
-
Save samuelematias/746fdd2e07c21d7307e34b87b794a565 to your computer and use it in GitHub Desktop.
vsCode configs
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
{ | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"workbench.colorTheme": "Dracula Pro", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"terminal.integrated.rendererType": "dom", | |
"terminal.integrated.fontFamily": "Fira Code", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"window.title": "${activeEditorLong}${separator}${rootName}", | |
"extensions.ignoreRecommendations": true, | |
"editor.formatOnSave": true, | |
"files.autoSave": "onFocusChange", | |
"editor.codeLens": true, | |
"window.zoomLevel": 0, | |
"terminal.integrated.shellArgs.osx": [ | |
"-l" | |
], | |
"terminal.external.osxExec": "Alacritty.app", | |
"terminal.explorerKind": "external", | |
"launch": {}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"dart.debugExternalLibraries": true, | |
"dart.debugSdkLibraries": true, | |
"dart.previewFlutterUiGuides": true, | |
"dart.previewFlutterUiGuidesCustomTracking": true, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"debug.openDebug": "openOnDebugBreak", | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"editor.suggestSelection": "first", | |
"debug.toolBarLocation": "docked" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment