Skip to content

Instantly share code, notes, and snippets.

@transcendr
Created August 17, 2018 23:05
Show Gist options
  • Save transcendr/9b560376ec812a5163698f5b4192f48f to your computer and use it in GitHub Desktop.
Save transcendr/9b560376ec812a5163698f5b4192f48f to your computer and use it in GitHub Desktop.
VS Code Config
{
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"git.enableSmartCommit": true,
"workbench.startupEditor": "welcomePage",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.vscode": true
},
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"vscode_custom_css.imports": ["file:///C:/Users/trans/OneDrive/Development/VSCode/operator-style.css"],
"vscode_custom_css.policy": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment