Created
December 30, 2018 04:05
-
-
Save chrisdemars/337fbda92339e0bbd36fb8cb7885b70e to your computer and use it in GitHub Desktop.
VS Code settings from my personal machine.
This file contains hidden or 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.colorTheme": "Level Up", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.port": 0, | |
"prettier.singleQuote": true, | |
"prettier.eslintIntegration": true, | |
"prettier.tabWidth": 2, | |
"editor.formatOnSave": true, | |
// Controls the font size in pixels. | |
"editor.fontSize": 14, | |
"editor.wordWrap": "on", | |
"workbench.iconTheme": "material-icon-theme", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": true, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true, | |
"suppressUpdateNotice": true, | |
"suppressWelcomeNotice": true | |
}, | |
"window.zoomLevel": 0, | |
"material-icon-theme.showUpdateMessage": false, | |
"files.autoSave": "afterDelay", | |
"gitlens.keymap": "alternate", | |
"git.enableSmartCommit": true, | |
"gitlens.historyExplorer.enabled": true, | |
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.editor.highlightModifiedTabs": true, | |
"editor.tabSize": 2, | |
"editor.tabCompletion": "on", | |
"html.format.indentInnerHtml": true, | |
"files.defaultLanguage": "html" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment