Created
March 3, 2019 15:33
-
-
Save phantomk/ada73161ecaebe27b0c282fdb85cb0c3 to your computer and use it in GitHub Desktop.
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
{ | |
"window.openFilesInNewWindow": "on", | |
"window.restoreWindows": "all", | |
"window.openFoldersInNewWindow": "on", | |
"editor.snippetSuggestions": "top", | |
"editor.cursorStyle": "block", | |
"editor.lineHeight": 30, | |
"debug.allowBreakpointsEverywhere": true, | |
"editor.fontFamily": " 'M+ 1mn', 'Operator Mono', 'Fantasque Sans Mono', 'SFMono-Regular', 'Fira Code', 'Ubuntu Mono', 'iosevka', 'inconsolata'", | |
// Enables font ligatures | |
"editor.fontLigatures": true, | |
// Controls if file decorations should use badges. | |
"explorer.decorations.badges": false, | |
"window.zoomLevel": -2.8, | |
"workbench.colorTheme": "Gruvbox Dark (Medium)", | |
"editor.renderWhitespace": "none", | |
"editor.renderControlCharacters": false, | |
"docthis.includeDescriptionTag": true, | |
"docthis.enableHungarianNotationEvaluation": true, | |
"docthis.inferTypesFromNames": true, | |
"docthis.includeAuthorTag": true, | |
"docthis.authorName": "phantomk", | |
"editor.formatOnSave": false, | |
"node-module-intellisense.scanBuiltinModules": true, | |
"node-module-intellisense.scanDevDependencies": true, | |
"node-module-intellisense.scanFileModules": true, | |
"node-module-intellisense.modulePaths": [], | |
// "node-module-intellisense.fileModuleExtensions": [ | |
// ".js", | |
// ".jsx", | |
// ".ts", | |
// ".d.ts", | |
// ".tsx", | |
// ".vue", | |
// ".json" | |
// ], | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#EB8A34", | |
"list.activeSelectionForeground": "#EB8A34", | |
"list.inactiveSelectionForeground": "#EB8A34", | |
"list.highlightForeground": "#EB8A34", | |
"scrollbarSlider.activeBackground": "#EB8A34", | |
"editorSuggestWidget.highlightForeground": "#EB8A34", | |
"textLink.foreground": "#EB8A34", | |
"progressBar.background": "#EB8A34", | |
"pickerGroup.foreground": "#669D5B", | |
"tab.activeBorder": "#669D5B", | |
"statusBar.background" : "#333333", | |
"statusBar.noFolderBackground" : "#333333", | |
"statusBar.debuggingBackground": "#333333" | |
}, | |
// "materialTheme.cache.workbench.settings": { | |
// "accent": "Acid Lime", | |
// "accentPrevious": "Pink", | |
// "themeColours": "Default" | |
// }, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.tabSize": 2, | |
"vsicons.projectDetection.autoReload": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"bracketPairColorizer.consecutivePairColors": [ | |
"()", | |
"[]", | |
"{}", | |
[ | |
"Grey", | |
"Grey", | |
"Grey" | |
], | |
"Red" | |
], | |
"todohighlight.isEnable": true, | |
"todohighlight.keywords": [ | |
{ | |
"text": "NOTE:", | |
"color": "#fff", | |
"backgroundColor": "#EB8A34", | |
"overviewRulerColor": "grey" | |
}, | |
{ | |
"text": "HACK:", | |
"color": "#fff", | |
"backgroundColor": "#669D5B", | |
"overviewRulerColor": "grey" | |
}, | |
{ | |
"text": "BUG:", | |
"color": "#fff", | |
"backgroundColor": "red", | |
"overviewRulerColor": "grey" | |
}, | |
], | |
"materialTheme.fixIconsRunning": false, | |
"workbench.tree.horizontalScrolling": true, | |
"editor.fontWeight": "500", | |
"files.autoSave": "afterDelay", | |
"workbench.editor.showTabs": false, | |
"editor.detectIndentation": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"vsicons.dontShowNewVersionMessage": true, | |
"search.showLineNumbers": true, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "relative", | |
"editor.renderLineHighlight": "gutter", | |
"terminal.integrated.rendererType": "dom", | |
"editor.fontSize": 20, | |
"search.usePCRE2": true, | |
"terminal.explorerKind": "external", | |
"workbench.sideBar.location": "right", | |
"breadcrumbs.enabled": true, | |
"python.jediEnabled": false, | |
"zenMode.centerLayout": false, | |
"zenMode.hideLineNumbers": false, | |
"debug.internalConsoleOptions": "neverOpen", | |
"workbench.statusBar.feedback.visible": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"editor.overviewRulerBorder": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment