Skip to content

Instantly share code, notes, and snippets.

@nveenjain
Created October 3, 2018 08:18
Show Gist options
  • Save nveenjain/c326e6d2be5ad04855d7854d94fe11c9 to your computer and use it in GitHub Desktop.
Save nveenjain/c326e6d2be5ad04855d7854d94fe11c9 to your computer and use it in GitHub Desktop.
My VSCODE configuration
{
"editor.fontFamily": "Fira Code,Monofonto",
"editor.fontSize": 14,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "600",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"workbench.colorCustomizations": {
"editorCursor.foreground": "#17ede2",
"activityBar.background": "#000C1D",
"activityBar.border": "#002c58",
"sideBar.background": "#001122",
"sideBar.border": "#102a44",
"sideBar.foreground": "#3f91b1",
"terminal.ansiYellow": "#fffb00",
"gitDecoration.ignoredResourceForeground": "#969090"
},
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.cursorBlinking": "expand",
// Very important: Install this plugin: https://github.com/be5invis/vscode-custom-css
// you'll need to change this to an absolute path on your computer
"editor.renderWhitespace": "all",
"window.zoomLevel": -1,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"editor.formatOnSave": false,
"eslint.autoFixOnSave": false,
"gitlens.historyExplorer.enabled": true,
"[markdown]": {
"editor.formatOnSave": false
},
"editor.minimap.enabled": false,
"workbench.colorTheme": "Night Owl No Italics",
"workbench.iconTheme": "material-icon-theme",
"lebab.transforms": [
"arrow",
"for-of",
"for-each",
"arg-rest",
"arg-spread",
"obj-method",
"obj-shorthand",
"no-strict",
"exponent",
"multi-var",
"class"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment