Last active
March 19, 2018 10:04
-
-
Save firflant/209bd3aea0891455a675908613a80df5 to your computer and use it in GitHub Desktop.
My VS Code config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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