Skip to content

Instantly share code, notes, and snippets.

@TheNaoX
Created January 29, 2018 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheNaoX/e15d5c2226dd39bdfee0260ee3b8789d to your computer and use it in GitHub Desktop.
Save TheNaoX/e15d5c2226dd39bdfee0260ee3b8789d to your computer and use it in GitHub Desktop.
My VSCode settings

Extensions list

  • ESLint
  • HTML Snippets
  • Material Icon theme
  • Rainglow
  • Ruby
  • ruby-on-rails-snippets
  • ruby-snippet
  • Simple Ruby ERB
  • Slim
  • Trailing Spaces

User settings configuration cmd + shift + p and type user settings then enter

{
  "workbench.colorTheme": "Storm (rainglow)",
  "workbench.iconTheme": "material-icon-theme",
  "ruby.lint": {
    "rubocop": {
      "lint": true,
      "rails": true
    }
  },
  "editor.fontFamily": "Monaco, Menlo, 'Courier New', monospace",
  "editor.fontSize": 13,
  "editor.tabSize": 2,
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "tmp/": true,
    "spec/fixtures/": true,
    "spec/log/": true
  },
  "window.zoomLevel": 0,
  "trailing-spaces.trimOnSave": true,
  "trailing-spaces.deleteModifiedLinesOnly": false,
  "files.insertFinalNewline": true,
  "editor.snippetSuggestions": "top",
  "explorer.confirmDragAndDrop": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment