Skip to content

Instantly share code, notes, and snippets.

@rnqs
Last active December 7, 2022 13:02
Show Gist options
  • Save rnqs/95d321986832752551d339b697454907 to your computer and use it in GitHub Desktop.
Save rnqs/95d321986832752551d339b697454907 to your computer and use it in GitHub Desktop.
VS Code config
{
"window.title": "${activeEditorShort}",
"workbench.colorTheme": "Dark Palenight",
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "fluent-icons",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"statusBar.debuggingBackground": "#75bfff44",
"editorRuler.foreground": "#ffffff0c"
},
"editor.inlineSuggest.enabled": true,
"editor.fontFamily": "Victor Mono",
"editor.fontWeight": "625",
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.lineHeight": 26,
"editor.letterSpacing": 0.25,
"editor.rulers": [80],
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.mouseWheelZoom": true,
"editor.minimap.enabled": false,
"editor.accessibilitySupport": "off",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[c]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"debug.console.fontFamily": "MesloLGS NF",
"debug.console.lineHeight": 14,
"debug.console.fontSize": 13,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontWeight": "600",
"terminal.integrated.fontWeightBold": "900",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"javascript.updateImportsOnFileMove.enabled": "always",
// "javascript.inlayHints.parameterNames.enabled": "literals",
// "javascript.inlayHints.variableTypes.enabled": true,
// "javascript.inlayHints.propertyDeclarationTypes.enabled": true,
// "javascript.inlayHints.parameterTypes.enabled": true,
// "javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
// "typescript.inlayHints.parameterNames.enabled": "literals",
// "typescript.inlayHints.variableTypes.enabled": true,
// "typescript.inlayHints.propertyDeclarationTypes.enabled": true,
// "typescript.inlayHints.parameterTypes.enabled": true,
// "typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"typescript": "tsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"smoothtype.duration": 100,
"material-icon-theme.hidesExplorerArrows": true,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.hovers.enabled": false,
"errorLens.onSave": true,
"tabnine.experimentalAutoImports": true,
"sqltools.useNodeRuntime": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"react-native-tools.showUserTips": false,
"git.allowForcePush": true,
"liveshare.presence": true,
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"c": "cd $dir && mkdir -p bin && cd bin && gcc ../$fileName -o $fileNameWithoutExt && ./$fileNameWithoutExt"
},
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 2, ColumnLimit: 0}",
"cSpell.language": "en,pt"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment