Created
September 12, 2018 01:41
-
-
Save 1Marc/bbd166a81ded3be0b495ee8f90c696ba 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
// For: @musaid | |
// https://twitter.com/musaid/status/1039688749205020672 | |
// Ligatures built into Operator Mono as "Operator Mono Lig" with https://github.com/kiliman/operator-mono-lig | |
// VS Code Extensions: vscode-icons, indent-rainbow, Rainbow Brackets, Git Lense and Prettier (require config file with requireConfig) | |
// VS Code Theme: Night Owl -- custom colors for a bit higher contrast | |
{ | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"window.zoomLevel": 1, | |
"editor.fontSize": 18, | |
"editor.fontFamily": "Operator Mono Lig", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "Operator Mono Lig, Roboto Mono for Powerline", | |
"workbench.colorTheme": "Night Owl", | |
"editor.formatOnSave": true, | |
"[html]": {}, | |
"workbench.iconTheme": "vscode-icons", | |
"vsicons.projectDetection.autoReload": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.historyExplorer.enabled": true, | |
"workbench.colorCustomizations": { | |
"[Night Owl]": { | |
"statusBar.foreground": "#ccc", | |
"panel.background": "#002", | |
"sideBar.background": "#001", | |
"editor.background": "#001", | |
"peekViewEditor.background": "#000", | |
"editorGutter.background": "#000" | |
} | |
}, | |
"workbench.sideBar.location": "right", | |
"explorer.openEditors.visible": 0, | |
"editor.fontLigatures": true, | |
"prettier.requireConfig": true, | |
"vsicons.dontShowNewVersionMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment