Skip to content

Instantly share code, notes, and snippets.

@kieranmv95
Last active August 29, 2020 16:35
Show Gist options
  • Save kieranmv95/48f327d7dfeae49fb90dded9899600cb to your computer and use it in GitHub Desktop.
Save kieranmv95/48f327d7dfeae49fb90dded9899600cb to your computer and use it in GitHub Desktop.
Settings for visual studio code
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 18,
"editor.letterSpacing": 0.5,
"editor.cursorStyle": "line-thin",
"editor.minimap.enabled": false,
"editor.cursorBlinking": "smooth",
"editor.multiCursorModifier": "ctrlCmd",
"editor.smoothScrolling": true,
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"explorer.openEditors.visible": 5,
"editor.tabSize": 2,
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"workbench.colorTheme": "Cobalt2",
"window.zoomLevel": 0,
"editor.formatOnSave": false,
"files.exclude": {
"**/.cache": true,
"**/.git": true,
".vscode/": true,
".idea/": true,
"package-lock.json": true,
"node_modules": true
},
"workbench.iconTheme": "material-icon-theme",
}
@kieranmv95
Copy link
Author

kieranmv95 commented Jan 15, 2019

This theme requires a couple of prerequisites:

  • Wesbos cobalt 2 theme needs to be installed,
  • Material Icon theme (not required just makes shit look pretty)
  • Fira Code font family needs to be installed
  • Prettier plugin
  • ESLint

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