Skip to content

Instantly share code, notes, and snippets.

@majames
Created September 6, 2018 23:09
Show Gist options
  • Save majames/93d996ffefe2962617b87a50172a6413 to your computer and use it in GitHub Desktop.
Save majames/93d996ffefe2962617b87a50172a6413 to your computer and use it in GitHub Desktop.
vscode settings
{
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"explorer.autoReveal": false,
"files.autoSave": "onFocusChange",
"editor.rulers": [
100
],
// open all files in new tabs
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.enablePreview": false,
// vim
"vim.useCtrlKeys": false,
// git extension
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
// todo highlighting
"todohighlight.keywords": [
"TODO",
"TODO:"
],
// typescript
"typescript.updateImportsOnFileMove.enabled": "never",
// terminal
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
// emojis
"emojisense.languages": {
"markdown": true,
"json": true,
"typescript": true,
"typescriptreact": true
},
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment