Created
May 2, 2018 17:05
-
-
Save PierreAndreis/7dcdd02174a742d4c7cd0856f9833b95 to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": true, | |
"editor.minimap.renderCharacters": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.meteor": true, | |
"**/node_modules": true | |
}, | |
"editor.wordWrap": "on", | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.meteor": true | |
}, | |
"window.zoomLevel": 0, | |
"json.format.enable": false, | |
"json.trace.server": "off", | |
"editor.tabSize": 2, | |
"workbench.colorTheme": "Oceanic Next (dimmed bg)", | |
"workbench.fontAliasing": "default", | |
"git.confirmSync": false, | |
"editor.autoIndent": true, | |
"typescript.check.npmIsInstalled": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"git.enableSmartCommit": true, | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"git.autofetch": true, | |
"workbench.sideBar.location": "left", | |
"alignment.surroundSpace": { | |
"colon": [ | |
0, | |
1 | |
], | |
"assignment": [ | |
1, | |
1 | |
], | |
"arrow": [ | |
1, | |
1 | |
], | |
"comment": 2 | |
}, | |
"liveServer.settings.donotVerifyTags": true, | |
"gitlens.blame.highlight.locations": [ | |
"gutter" | |
], | |
"vsicons.dontShowNewVersionMessage": true, | |
"gitlens.codeLens.scopes": [ | |
"containers", | |
"document" | |
], | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.keymap": "alternate", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"editor.renderControlCharacters": false, | |
"editor.fontFamily": "'OperatorMonoLig-Book'", | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "normal", | |
"editor.fontSize": 13, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"comment.block", | |
"comment.block.documentation", | |
"comment.line", | |
"storage.type", | |
"entity.other.attribute-name", | |
"support.type" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment