Created
July 10, 2019 10:44
-
-
Save oleg-koval/65fb6150e1f0a82cb0a0f981195c9afb to your computer and use it in GitHub Desktop.
Styles for a cool vscode setup
This file contains hidden or 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
{ | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressShowKeyBindingsNotice": true, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"atomKeymap.promptV3Features": true, | |
"extensions.ignoreRecommendations": false, | |
"editor.tabSize": 2, | |
"editor.fontFamily": "Fira Code iScript", | |
"editor.fontLigatures": true, | |
"vscode_custom_css.imports": ["file:///Users/<USERNAME>/Desktop/styles.css"], | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.occurrencesHighlight": false, | |
"editor.selectionHighlight": false, | |
"editor.cursorBlinking": "solid", | |
"editor.cursorWidth": 5, | |
"editor.fontWeight": "400", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.wordWrap": "on", | |
"workbench.sideBar.location": "right", | |
"editor.formatOnPaste": false, | |
"files.trimTrailingWhitespace": true, | |
"sync.gist": "<SYNC_GIST_ID>", | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"cSpell.userWords": [], | |
"editor.minimap.enabled": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"terminal.integrated.rendererType": "dom", | |
"explorer.confirmDragAndDrop": false, | |
"eslint.alwaysShowStatus": true, | |
"editor.renderWhitespace": "none", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.renderControlCharacters": false, | |
"search.location": "panel", | |
"workbench.colorTheme": "Dark++ Italic", | |
"launch": { | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha All", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--timeout", | |
"999999", | |
"--colors", | |
"'${workspaceFolder}/{,!(node_modules)/}*/*.test.js'" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Current File", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": ["--timeout", "999999", "--colors", "${file}"], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "neverOpen" | |
} | |
], | |
"compounds": [] | |
}, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"python.jediEnabled": false, | |
"liveServer.settings.donotVerifyTags": true, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"window.zoomLevel": 1, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
This file contains hidden or 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
.comment, | |
.attribute-name, | |
.this, | |
.decorator, | |
.key:not(.punctuation), | |
.property-name { | |
font-family: 'flottflott'; | |
font-style: italic; | |
font-size: 1.2em; | |
} | |
.type.storage,.type.storage.declaration, .storage.class.modifier { | |
font-family: 'flottflott'; | |
font-size: 1.7em; | |
} | |
.type.storage.arrow.function { | |
font-family: 'Fira Code' | |
} | |
.decorator.name, .decorator.punctuation:not(.block), .import.keyword { | |
font-family: 'flottflott'; | |
font-size: 1.7em; | |
color: #68f39b!important; | |
} | |
.attribute-name { | |
font-family: 'flottflott'; | |
font-size: 1.5em; | |
} | |
.html.quoted.double { | |
color: #a6f3a6!important; | |
} | |
.comment { | |
color: #c5c5fd!important; | |
} | |
.comment:not(.punctuation) { | |
font-family: flottflott; | |
font-size: 1.5em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment