Skip to content

Instantly share code, notes, and snippets.

@Mokkapps
Last active January 22, 2019 10:02
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 Mokkapps/d084e96e3b20b1d70d7c8cbacfddea9f to your computer and use it in GitHub Desktop.
Save Mokkapps/d084e96e3b20b1d70d7c8cbacfddea9f to your computer and use it in GitHub Desktop.
My general Visual Code settings
// Editor
"editor.formatOnSave": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.codeLens": true,
// Breadcrumbs
"breadcrumbs.enabled": true,
// Terminal
"terminal.enableAppInsights": false,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Inconsolata-g for Powerline",
// Auto save
"files.autoSave": "onFocusChange",
// use relative paths for imports
"typescript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifier": "relative",
// File exclude
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/tmp": true,
"**/bower_components": true,
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": {
"when": "$(basename).ts"
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment