Skip to content

Instantly share code, notes, and snippets.

@samuelematias
Created February 1, 2021 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelematias/746fdd2e07c21d7307e34b87b794a565 to your computer and use it in GitHub Desktop.
Save samuelematias/746fdd2e07c21d7307e34b87b794a565 to your computer and use it in GitHub Desktop.
vsCode configs
{
"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