Skip to content

Instantly share code, notes, and snippets.

@balinterdi
Created May 26, 2017 12:27
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 balinterdi/3558422094b7e99ba7c9ef418a8bb5d2 to your computer and use it in GitHub Desktop.
Save balinterdi/3558422094b7e99ba7c9ef418a8bb5d2 to your computer and use it in GitHub Desktop.
My VSCode configuration
{
"window.zoomLevel": 1,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/tmp": true,
"node_modules": true, // this excludes the folder
// only from the root of
// your workspace
"tmp": true,
"dist": true
},
"editor.tabSize": 2,
"editor.lineNumbers": "relative",
// VIM settings
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["<Esc>"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment