Skip to content

Instantly share code, notes, and snippets.

@bradykeeling
Last active July 2, 2019 14:28
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 bradykeeling/e6003ad0b9458c0ccacbdda693bb625f to your computer and use it in GitHub Desktop.
Save bradykeeling/e6003ad0b9458c0ccacbdda693bb625f to your computer and use it in GitHub Desktop.
VS Code Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Victor Mono",
"editor.fontLigatures": true,
"editor.fontSize": 12.5,
"editor.lineHeight": 30,
"editor.fontWeight": "700",
"editor.cursorStyle": "underline",
"editor.colorDecorators": false,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.letterSpacing": 1,
"editor.tabSize": 2,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "all",
"editor.tabCompletion": "on",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
// "editor.suggestSelection": "recentlyUsed",
// "editor.snippetSuggestions": "top",
"explorer.openEditors.visible": 0,
"gitlens.statusBar.enabled": false,
"terminal.integrated.fontFamily": "Victor Mono",
"terminal.integrated.fontSize": 12.5,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.fontWeight": "700",
"terminal.integrated.fontWeightBold": "900",
"terminal.integrated.letterSpacing": 1,
"terminal.integrated.rendererType": "dom",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.cursorBlinking": true,
"window.zoomLevel": 1,
"window.newWindowDimensions": "inherit",
"workbench.colorTheme": "Neon Night",
"workbench.iconTheme": "material-icon-theme",
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.list.automaticKeyboardNavigation": false,
"workbench.colorCustomizations": {
"tab.border": "#333333"
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"blade": "html",
"erb": "html",
"html.erb": "html",
"twig": "html",
"jst.eco": "html",
"eco": "html"
},
"atomKeymap.promptV3Features": true,
"blade.format.enable": true,
"breadcrumbs.enabled": false,
"files.associations": {
"*.html": "html"
},
"files.trimTrailingWhitespace": true,
// File extensions to be parsed by the Typescript parser
"importCost.typescriptExtensions": [
"\\.vue$"
],
"php.suggest.basic": false,
"phpConstructor.chooseConstructorVisibility": true,
"sync.gist": "9d5e4d29cde6f0adb9da9622dfbfc139",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment