Skip to content

Instantly share code, notes, and snippets.

@samlucax
Last active December 14, 2022 04:35
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 samlucax/1288d9cb06ba4a37742155e94c9ce432 to your computer and use it in GitHub Desktop.
Save samlucax/1288d9cb06ba4a37742155e94c9ce432 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Editor
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.semanticHighlighting.enabled": false,
"editor.accessibilitySupport": "off",
"editor.inlineSuggest.enabled": true,
"editor.rulers": [
80,
120
],
"breadcrumbs.enabled": true,
// Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": true,
"explorer.compactFolders": false,
"material-icon-theme.activeIconPack": "nest",
// Extensions
"extensions.ignoreRecommendations": true,
// Gitlens
"gitlens.codeLens.enabled": false,
"gitlens.codeLens.authors.enabled": false,
// Workbench
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
"workbench.colorTheme": "Dracula Soft",
"workbench.editor.untitled.hint": "hidden",
"workbench.iconTheme": "material-icon-theme",
// Dart
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
// Robot
"[robotframework]": {
"editor.defaultFormatter": "d-biehl.robotcode"
},
// Javascript
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
// Terminal
"terminal.integrated.fontSize": 24,
"terminal.integrated.showExitAlert": false,
"terminal.integrated.fontWeightBold": "normal",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment