Last active
April 21, 2020 13:09
-
-
Save sorja/667ae0d2506a6b04db084699289832b0 to your computer and use it in GitHub Desktop.
random vscode conf from old mbp, probably not all meant to be on at the same time
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
{ | |
"[javascriptreact]": { | |
"editor.formatOnSave": true | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"editor.colorDecorators": true, | |
"editor.cursorBlinking": "expand", | |
"editor.cursorStyle": "block", | |
"editor.find.autoFindInSelection": true, | |
"editor.find.seedSearchStringFromSelection": false, | |
"editor.fontSize": 14, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.lineHeight": 24, | |
"editor.matchBrackets": true, | |
"editor.minimap.maxColumn": 60, | |
"editor.minimap.renderCharacters": false, | |
"editor.parameterHints": true, | |
"editor.quickSuggestionsDelay": 0, | |
"files.useExperimentalFileWatcher": true, | |
"editor.renderIndentGuides": true, | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.scrollbar.verticalScrollbarSize": 8, | |
"editor.selectionHighlight": true, | |
// "editor.snippetSuggestions": "top", | |
// "editor.suggestOnTriggerCharacters": true, | |
"editor.tabSize": 2, | |
// "editor.suggestSelection": "recentlyUsedByPrefix", | |
// "editor.wordBasedSuggestions": , | |
"eslint.packageManager": "yarn", | |
"explorer.openEditors.visible": 0, | |
"files.exclude": { | |
".history": true, | |
"**/__pycache__": true, | |
"**/.cache": true, | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"**/.hg": true, | |
"**/.svn": true, | |
"**/*.bak": true, | |
"**/*.min": true, | |
"**/*.pyc": true, | |
"**/bower_components": true, | |
"**/build": true, | |
"**/CVS": true, | |
"**/dist": true, | |
"**/node_modules": true | |
}, | |
"files.trimTrailingWhitespace": true, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true, | |
"suppressWelcomeNotice": true | |
}, | |
"gitlens.historyExplorer.enabled": true, | |
"gitlens.resultsExplorer.files.layout": "list", | |
"haskell.ghcMod.executablePath": "stack", | |
"npm.packageManager": "yarn", | |
"outline.problems.colors": true, | |
"problems.autoReveal": true, | |
// "search.useRipgrep": true, | |
// "searchRipgrep.enable": true, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"terminal.integrated.confirmOnExit": true, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "block", | |
"terminal.integrated.macOptionIsMeta": true, | |
"terminal.integrated.experimentalTextureCachingStrategy": "dynamic", | |
"terminal.integrated.scrollback": 15000, | |
"terminal.integrated.commandsToSkipShell": [ | |
"workbench.action.togglePanel", | |
"workbench.action.toggleMaximizedPanel" | |
], | |
"terminal.integrated.shellArgs.linux": [ | |
"-l" | |
], | |
"window.title": "${activeEditorShort}${separator} ${appName} ${separator}${activeEditorLong}", | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": false, | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBackground": "#220815", | |
"editor.selectionBackground": "#771835", | |
"editor.wordHighlightBackground": "#771835", | |
"editorCursor.foreground": "#F12360", | |
"scrollbarSlider.background": "#F1236098", | |
"editorIndentGuide.background": "#f123613a", | |
"editorRuler.foreground": "#f123613a", | |
}, | |
"workbench.editor.enablePreview": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.feedback.visible": false, | |
"workbench.statusBar.visible": true, | |
"zenMode.fullScreen": false, | |
"search.location": "sidebar", | |
"extensions.ignoreRecommendations": true, | |
"files.hotExit": "onExitAndWindowClose", | |
"files.insertFinalNewline": true, | |
"files.maxMemoryForLargeFilesMB": 8192, | |
"zenMode.centerLayout": false, | |
"sync.lastUpload": "2018-07-15T13:43:50.331Z", | |
"terminal.integrated.rendererType": "dom", | |
"editor.letterSpacing": -1, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"workbench.sideBar.location": "right", | |
"window.nativeFullScreen": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment