Skip to content

Instantly share code, notes, and snippets.

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 FilipIlievski/c95ce7feca7a9b303eb1ed257fff5113 to your computer and use it in GitHub Desktop.
Save FilipIlievski/c95ce7feca7a9b303eb1ed257fff5113 to your computer and use it in GitHub Desktop.
VS Code Settings.js
{
"window.zoomLevel": 0,
"workbench.iconTheme": null,
"workbench.colorTheme": "Sublime Material Theme - Dark",
"prettier.singleQuote": true,
"prettier.bracketSpacing": false,
"editor.fontSize": 14.5,
"editor.lineHeight": 22.8,
"editor.snippetSuggestions": "top",
"editor.minimap.enabled": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.quickOpen.closeOnFocusLost": false,
"javascript.referencesCodeLens.enabled": false,
"typescript.referencesCodeLens.enabled": false,
"typescript.implementationsCodeLens.enabled": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"terminal.integrated.fontFamily": "Hack, Menlo, monospace",
"terminal.integrated.fontSize": 12,
"terminal.integrated.lineHeight": 2,
"terminal.integrated.cursorBlinking": true,
"tslint.packageManager": "yarn",
"gitlens.keymap": "alternate",
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}",
["DarkGray", "LightSkyBlue", "LightSkyBlue"],
"Red"
],
"git.confirmSync": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"editor.tokenColorCustomizations": {
"numbers": "#FF9D00",
"consts": "#FF9D00",
"functions" : {
"fontStyle": "italic",
},
"types": "#E27D60",
"variables": "#85DCBf",
"textMateRules": [{
"scope": "constant.other.color",
"settings": {
"foreground": "#FF0000"
}
}]
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#193549", // "#271E1F",
"activityBar.background": "#0C293A", // "#271E1F",
"sideBar.background": "#11232F", // "#271E1F",
"editor.background": "#0C293A",
"editorLineNumber.foreground": "#6e6e6e",
"editorLineNumber.activeForeground": "#38954d",
"editor.tokenColorCustomizations": {
"functions": "#000000"
},
"breadcrumbs.enabled": true,
"breadcrumbs.symbolPath": "last",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"editor.foldingStrategy": "indentation",
"editor.formatOnSave": true,
"prettier.eslintIntegration": true,
"prettier.trailingComma": "all",
"workbench.sideBar.location": "left",
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"workbench.statusBar.visible": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
// Cobalt 2 background: "#10364B"
// My custom editor background: "#232323",
// "#11232F"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
// Yellow: #ffc600
// Orange: #FF9D00
// Mint: #2AFFDF
// Blue: #193549
// Off Blue: #0D3A58 (use on variable bgs)
// Dusty Blue: #35434d
// Dark Blue: #15232D
// Pink: #FB94FF
// Light Blue: #9EFFFF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment