Skip to content

Instantly share code, notes, and snippets.

@musaid
Forked from 1Marc/config.js
Last active October 31, 2018 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musaid/fd865f293117a745348e422d19f491c2 to your computer and use it in GitHub Desktop.
Save musaid/fd865f293117a745348e422d19f491c2 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:
// Material Icon Theme (Philip Kief),
// indent-rainbow (oderwat),
// Rainbow Brackets (2gua),
// Subtle Match Brackets (Rafa Mel),
// Git Lense
// Prettier (Esben Petersen) (require config file with requireConfig)
// VS Code Theme: Night Owl -- custom colors for a bit higher contrast
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"window.menuBarVisibility": "toggle",
"workbench.statusBar.visible": true,
"files.autoSave": "off",
"extensions.ignoreRecommendations": false,
"search.useIgnoreFiles": false,
"editor.showFoldingControls": "always",
"editor.scrollBeyondLastLine": true,
"editor.tabCompletion": false,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"editor.wordWrap": "on",
"editor.fontWeight": "100",
"editor.insertSpaces": true,
"window.zoomLevel": 0.5,
"editor.fontSize": 12,
"editor.fontFamily": "Operator Mono Lig",
"terminal.integrated.fontSize": 11,
"terminal.integrated.fontFamily": "Monaco for Powerline",
"workbench.colorTheme": "Night Owl",
// "editor.formatOnSave": true,
"[html]": {},
"workbench.iconTheme": "material-icon-theme",
"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"
}
},
"editor.matchBrackets": false,
"workbench.sideBar.location": "left",
"explorer.openEditors.visible": 0,
"editor.fontLigatures": true,
"prettier.requireConfig": true,
"material-icon-theme.hidesExplorerArrows": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment