Skip to content

Instantly share code, notes, and snippets.

@bbqsrc
Created April 3, 2023 12:08
Show Gist options
  • Save bbqsrc/5d4484418fefb7d5843ada0d843b90df to your computer and use it in GitHub Desktop.
Save bbqsrc/5d4484418fefb7d5843ada0d843b90df to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Pale Fire High Contrast",
"editor.fontSize": 13,
// "editor.lineHeight": 1.5,
"editor.fontFamily": "'JetBrains Mono'",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "'Iosevka Term SS14'",
"terminal.integrated.fontSize": 14,
"debug.console.fontFamily": "'Iosevka Term SS14'",
"debug.console.fontSize": 14,
"files.associations": {
"*.lu": "rust"
},
"apklab.apktoolPath": "/Users/brendan/.apklab/apktool_2.6.1.jar",
"apklab.apkSignerPath": "/Users/brendan/.apklab/uber-apk-signer-1.2.1.jar",
"apklab.jadxDirPath": "/Users/brendan/.apklab/jadx-1.4.3",
"editor.bracketPairColorization.enabled": false,
"rust-analyzer.completion.privateEditable.enable": true,
// "rust-analyzer.inlayHints.renderColons": false,
"editor.inlayHints.enabled": "on",
"editor.inlayHints.fontFamily": "Iosevka SS14",
"editor.inlayHints.fontSize": 9,
"editor.inlayHints.padding": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"workbench.colorCustomizations": {
// Name of the theme you are currently using
"[Pale Fire High Contrast]": {
"editorInlayHint.foreground": "#bca3a3",
"editorInlayHint.background": "#333333",
// Overrides for specific kinds of inlay hints
"editorInlayHint.typeForeground": "#7ec8ce97",
"editorInlayHint.parameterForeground": "#e8e8d497"
}
},
"workbench.editor.revealIfOpen": true,
"python.analysis.typeCheckingMode": "strict",
"python.linting.mypyEnabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"editor.accessibilitySupport": "off",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"redhat.telemetry.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"window.title": "${rootName}${separator}${activeEditorShort}${separator}${profileName}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment