Skip to content

Instantly share code, notes, and snippets.

@firflant
Last active March 19, 2018 10:04
Show Gist options
  • Save firflant/209bd3aea0891455a675908613a80df5 to your computer and use it in GitHub Desktop.
Save firflant/209bd3aea0891455a675908613a80df5 to your computer and use it in GitHub Desktop.
My VS Code config
{
"window.zoomLevel": 0,
"workbench.colorTheme": "Atom One Dark",
"sasslint.resolvePathsRelativeToConfig": true,
"editor.fontSize": 13,
"editor.tabSize": 2,
"editor.tabCompletion": true,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80],
"editor.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?",
"emmet.includeLanguages": {
"mustache": "html"
},
"files.associations": {
"*.mustache": "html"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"terminal.integrated.fontFamily": "Inconsolata for Powerline",
"editor.minimap.enabled": false,
"gitlens.keymap": "alternate",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment