Skip to content

Instantly share code, notes, and snippets.

@davalapar
Last active August 17, 2018 18:12
Show Gist options
  • Save davalapar/31e878ee12ecf1a224f9993286e63ebc to your computer and use it in GitHub Desktop.
Save davalapar/31e878ee12ecf1a224f9993286e63ebc to your computer and use it in GitHub Desktop.
Interface.md
{
    "telemetry.enableTelemetry": false,
    "telemetry.enableCrashReporter": false,
    "editor.fontFamily": "'Liga Cousine'",
    "editor.fontLigatures": true,
    "editor.tabSize": 2,
    "update.showReleaseNotes": false,
    "workbench.colorTheme": "Monokai",
    "editor.minimap.showSlider": "always",
    "printcode.disableTelemetry": true,
    // https://www.fesevur.com/2017/11/cygwin-terminal-in-vscode.html
    "terminal.integrated.shell.windows": "C:\\cygwin64\\bin\\bash.exe",
    "terminal.integrated.shellArgs.windows": ["/bin/xhere", "/bin/bash"]
}
@davalapar
Copy link
Author

{
    "telemetry.enableTelemetry": false,
    "telemetry.enableCrashReporter": false,
    "editor.fontFamily": "'Liga Cousine'",
    "editor.fontSize": 15,
    "editor.fontLigatures": true,
    "editor.tabSize": 2,
    "update.showReleaseNotes": false,
    "workbench.colorTheme": "Monokai",
    "editor.minimap.showSlider": "always",
    "printcode.disableTelemetry": true,
    "printcode.paperSize": "letter",
    "printcode.printFilePath": "relative",
    "terminal.integrated.shell.windows": "C:\\cygwin64\\bin\\bash.exe",
    "terminal.integrated.shellArgs.windows": [
        "/bin/xhere",
        "/bin/bash"
    ],
    "git.enableSmartCommit": true,
    "window.zoomLevel": -1,
    "javascript.updateImportsOnFileMove.enabled": "never",
    "eslint.alwaysShowStatus": true,
    "eslint.autoFixOnSave": true,
    "javascript.format.insertSpaceAfterSemicolonInForStatements": false,
    "javascript.format.insertSpaceBeforeAndAfterBinaryOperators": false,
    "javascript.format.insertSpaceAfterCommaDelimiter": false,
    "javascript.validate.enable": false,
    "typescript.autoImportSuggestions.enabled": false,
    "jsDocCompletion.enabled": false,
    "typescript.validate.enable": false,
    "typescript.updateImportsOnFileMove.enabled": "never",
    "typescript.tsc.autoDetect": "off",
    "typescript.suggestionActions.enabled": false,
    "typescript.showUnused": false,
    "typescript.reportStyleChecksAsWarnings": false,
    "typescript.quickSuggestionsForPaths": false,
    "typescript.format.insertSpaceBeforeAndAfterBinaryOperators": false,
    "typescript.format.insertSpaceAfterSemicolonInForStatements": false,
    "typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
    "typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
    "typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
    "typescript.format.insertSpaceAfterCommaDelimiter": false,
    "typescript.format.enable": false,
    "typescript.check.npmIsInstalled": false,
    "javascript.nameSuggestions": false,
    "javascript.showUnused": false,
    "javascript.suggestionActions.enabled": false,
    "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
    "javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
    "javascript.format.enable": false,
    "editor.cursorStyle": "block-outline",
    "editor.minimap.renderCharacters": false,
    "editor.acceptSuggestionOnCommitCharacter": false,
    "files.eol": "\n",
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "files.trimTrailingWhitespace": true,
    "editor.accessibilitySupport": "off",
    "editor.links": false,
    "editor.multiCursorModifier": "ctrlCmd",
    "workbench.statusBar.feedback.visible": false,
    "workbench.tips.enabled": false,
    "window.titleBarStyle": "custom",
    "search.location": "panel",
    "debug.showInStatusBar": "never",
    "debug.openDebug": "neverOpen",
    "debug.internalConsoleOptions": "neverOpen",
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.copyOnSelection": true,
    "terminal.integrated.confirmOnExit": true,
    "terminal.integrated.fontSize": 15,
    "terminal.integrated.rendererType": "canvas",
    "eslint.packageManager": "yarn",
    "npm.packageManager": "yarn"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment