Skip to content

Instantly share code, notes, and snippets.

@franciscomxs
Last active June 12, 2020 01:21
Show Gist options
  • Save franciscomxs/be5245daf7d0bf327afc78c75749c0b7 to your computer and use it in GitHub Desktop.
Save franciscomxs/be5245daf7d0bf327afc78c75749c0b7 to your computer and use it in GitHub Desktop.
{
    "window.zoomLevel": 0,
    "editor.minimap.enabled": false,
    "breadcrumbs.enabled": true,
    "workbench.activityBar.visible": true,
    "window.menuBarVisibility": "toggle",
    "workbench.statusBar.visible": true,
    "workbench.colorTheme": "Omni",
    "workbench.iconTheme": "material-icon-theme",
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "editor.tabSize": 2,
    "[ruby]": {
      "editor.tabSize": 2
    },
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.formatOnPaste": true,
    "diffEditor.ignoreTrimWhitespace": false,
    "emmet.triggerExpansionOnTab": true,
    "editor.rulers": [80],
    "workbench.colorCustomizations": {
      "editorRuler.foreground": "#444444"
    },
    // "editor.fontFamily": "Fira Code",
    // "editor.fontLigatures": true,
    "editor.fontSize": 14,
    "editor.scrollBeyondLastLine": false,
    "explorer.openEditors.visible": 0,
}
vim $HOME/Library/Application\ Support/Code/User/settings.json
{
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "workbench.colorTheme": "Dracula",
    "workbench.iconTheme": "material-icon-theme",
    "workbench.statusBar.visible": true,
    "editor.minimap.enabled": false,
    "editor.tabSize": 2,
    "[ruby]": {
      "editor.tabSize": 2
    },
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.formatOnPaste": true,
    "diffEditor.ignoreTrimWhitespace": false,
    "emmet.triggerExpansionOnTab": true,
    "editor.rulers": [80],
    "workbench.colorCustomizations": {
      "editorRuler.foreground": "#444444"
    },
    "editor.fontFamily": "Fira Code",
    "editor.fontLigatures": true,
    "editor.fontSize": 14,
    "editor.scrollBeyondLastLine": false,
    "window.zoomLevel": 0,
    "explorer.openEditors.visible": 0,
    "terminal.integrated.shell.osx": "/bin/zsh"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment