Skip to content

Instantly share code, notes, and snippets.

@jamiepine
Last active November 3, 2023 17:23
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiepine/f341164f388c2b1fa3e42b3eb07e35cd to your computer and use it in GitHub Desktop.
Save jamiepine/f341164f388c2b1fa3e42b3eb07e35cd to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontSize": 13,
"editor.lineHeight": 1.8,
"editor.fontWeight": "normal",
"debug.console.fontFamily": "dank mono, monaco, monospace",
"editor.fontFamily": "dank mono, monaco, monospace",
"workbench.iconTheme": "bearded-icons",
"editor.fontLigatures": true,
// "workbench.colorCustomizations": {
// "editorGutter.background": "#131521",
// "editor.background": "#131521"
// },
"editor.snippetSuggestions": "bottom",
"settingsSync.ignoredSettings": [
"editor.fontWeight"
],
"search.exclude": {
"apps/mobile/*/**": true
},
"editor.wordSeparators": "`~!@$%^&*()=+[{]}\\|;:'\",<>\/.?",
"editor.formatOnSave": true,
"breadcrumbs.enabled": true,
"editor.cursorSmoothCaretAnimation": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"prettier.requireConfig": true,
"rust-analyzer.inlayHints.enable": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"git.confirmSync": false,
"git.enableSmartCommit": true,
"security.workspace.trust.untrustedFiles": "open",
"javascript.preferences.importModuleSpecifier": "relative",
"eslint.alwaysShowStatus": true,
"prettier.bracketSpacing": false,
"editor.tabCompletion": "onlySnippets",
"editor.wordWrap": "on",
"editor.suggestSelection": "first",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.autofetch": true,
"editor.inlineSuggest.enabled": true,
"settingsSync.ignoredSettings": [
"editor.fontFamily"
],
"terminal.integrated.fontFamily": "monaco, monospace",
"editor.accessibilitySupport": "off",
"typescript.preferences.importModuleSpecifier": "relative",
"editor.codeLens": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment