Skip to content

Instantly share code, notes, and snippets.

@1Marc
Created September 12, 2018 01:41
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save 1Marc/bbd166a81ded3be0b495ee8f90c696ba to your computer and use it in GitHub Desktop.
Save 1Marc/bbd166a81ded3be0b495ee8f90c696ba to your computer and use it in GitHub Desktop.
My VS Code Config
// 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