Created
February 15, 2018 20:54
-
-
Save fpigeonjr/7d4a9e64beeabc4e0fe257e770eaf44d to your computer and use it in GitHub Desktop.
monotropic port attempt
This file contains 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
{ | |
// Place your settings in this file to overwrite the default settings | |
"explorer.openEditors.visible": 0, | |
"editor.fontFamily": "Fantasque Sans Mono, Iosevka, Operator Mono, Fira Code", | |
"editor.fontSize": 22, | |
"editor.fontWeight": "400", | |
"editor.lineHeight": 24, | |
// "editor.letterSpacing": 0.1, | |
"editor.tabSize": 2, | |
"editor.lineNumbers": "on", | |
"editor.wordWrap": "on", | |
"editor.renderIndentGuides": false, | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.tabCompletion": true, | |
"editor.cursorBlinking": "solid", | |
"editor.cursorStyle": "line", | |
"prettier.eslintIntegration": true, | |
"files.trimTrailingWhitespace": true, | |
"files.autoSave": "afterDelay", | |
"workbench.activityBar.visible": true, | |
"workbench.editor.showTabs": true, | |
"javascript.validate.enable": false, | |
"workbench.colorTheme": "Black on Light Gray", | |
"vscode_custom_css.imports": [ | |
"/Volumes/macOS/Users/fpigeonjr/.vscodestyles.css" | |
], | |
"files.associations": { | |
"*.vue": "html" | |
}, | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"javascript": "javascriptreact" | |
}, | |
"sync.gist": "366b326327b732af4e70467e7ac26f23", | |
"sync.lastUpload": "2017-11-19T05:53:14.227Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "2017-10-01T06:24:40.334Z", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"workbench.statusBar.visible": true, | |
"workbench.fontAliasing": "antialiased", | |
"window.openFilesInNewWindow": "on", | |
"explorer.confirmDelete": false, | |
"workbench.colorCustomizations": { | |
"[Black on Light Gray]": { | |
"activityBar.background": "#fffffA", | |
"activityBar.foreground": "#111111", | |
"editor.background": "#FFFFFA", | |
// "editor.foreground": "#111111", | |
"editorLineNumber.foreground": "#666", | |
"editor.lineHighlightBackground": "#FCFAF1", | |
"sideBar.background": "#fffffA", | |
"statusBar.background": "#eeeee8", | |
"statusBar.foreground": "#111", | |
"editorWidget.background": "#fffffa", | |
"editor.selectionHighlightBackground": "#eeeee8", | |
"editor.selectionBackground": "#ddddda", | |
"editorError.foreground": "#808080" | |
} | |
}, | |
"workbench.iconTheme": "Monokai Pro Monochrome Icons" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment