Skip to content

Instantly share code, notes, and snippets.

@amogower
Created October 1, 2018 07:51
Show Gist options
  • Select an option

  • Save amogower/45fe52f5a4509d29e2fa90f5a709dca1 to your computer and use it in GitHub Desktop.

Select an option

Save amogower/45fe52f5a4509d29e2fa90f5a709dca1 to your computer and use it in GitHub Desktop.
VS Code Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Liga Dank Mono",
// "editor.fontFamily": "Operator Mono Lig",
// "editor.fontFamily": "Fira Code",
// "editor.fontWeight": "400",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"window.zoomLevel": -1,
"editor.minimap.enabled": true,
"editor.dragAndDrop": true,
"editor.cursorStyle": "line",
// "editor.multiCursorModifier": "ctrlCmd",
// "editor.cursorBlinking": "expand",
"editor.cursorBlinking": "phase",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"terminal.external.osxExec": "iTerm.app",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true,
"**/frontend": true,
"**/static": true,
"coverage": true
},
"workbench.colorTheme": "Oceanic Next Italic",
"workbench.iconTheme": "material-icon-theme",
"files.encoding": "utf8",
"files.autoSave": "off",
"workbench.colorCustomizations": {
"sideBar.background": "#16232A",
"activityBar.background": "#16232A",
"activityBar.border": "#3C3C3C",
"activityBarBadge.background": "#ffc02d",
"activityBarBadge.foreground": "#16232A",
"input.background": "#16232A",
"tab.inactiveForeground": "#AAAAAA",
"tab.activeBackground": "#303D46",
"tab.inactiveBackground": "#16232A",
"statusBar.background": "#16232A",
"statusBar.debuggingBackground": "#ffc02d",
"statusBar.debuggingForeground": "#16232A",
"statusBar.border": "#3C3C3C",
"sideBar.border": "#3C3C3C",
"titleBar.activeBackground": "#16232A",
"titleBar.activeForeground": "#FFFFFF",
"titleBar.inactiveForeground": "#A2A7AA",
"tab.border": "#3C3C3C",
"editorGroupHeader.tabsBackground": "#16232A",
"editor.background": "#16232A"
},
"sync.gist": "bc9a93a91ba32624da1c7daa4fa8c131",
"sync.lastUpload": "2018-04-24T12:49:23.648Z",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.forceDownload": false,
"sync.anonymousGist": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"git.autofetch": true,
"rust.mode": "legacy",
"editor.renderIndentGuides": false,
"rust.rustup": {
"toolchain": "stable-x86_64-apple-darwin",
"nightlyToolchain": "nightly-x86_64-apple-darwin"
},
"sync.askGistName": false,
"cSpell.language": "en-GB",
"cSpell.words": [
"trans"
],
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": true,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"material-icon-theme.showUpdateMessage": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"gitlens.historyExplorer.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment