Last active
August 24, 2018 07:44
-
-
Save heikomat/dbe5f23be2a6fc36b23709cf35e647c5 to your computer and use it in GitHub Desktop.
vscode config linux
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
{ | |
"workbench.statusBar.visible": true, | |
"files.insertFinalNewline": true, | |
"editor.scrollBeyondLastLine": false, | |
"editor.emptySelectionClipboard": false, | |
"editor.tabSize": 2, | |
"eslint.autoFixOnSave": true, | |
"tslint.autoFixOnSave": true, | |
"vsicons.projectDetection.autoReload": true, | |
"editor.rulers": [80, 120], | |
"search.followSymlinks": false, | |
"search.exclude": { | |
"**/node_modules": false, | |
"**/bower_components": true | |
}, | |
"terminal.integrated.scrollback": 100000, | |
"editor.cursorBlinking": "solid", | |
"editor.wordWrap": "off", | |
"workbench.iconTheme": "material-icon-theme", | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "Atom One Dark", | |
"typescript.tsdk": "./node_modules/typescript/lib", | |
"workbench.colorCustomizations": { | |
"scrollbar.shadow": "#2f343f", | |
"editor.background": "#2f343f", | |
"editor.lineHighlightBackground": "#2f343f", | |
"editor.lineHighlightBackground_": "#323652", | |
"editor.selectionBackground": "#3b4061", | |
"titleBar.activeBackground": "#2f343f", | |
"titleBar.inactiveBackground": "#2f343f", | |
"editorGroup.border": "#353957", | |
"editorGroupHeader.tabsBackground": "#2f343f", | |
"tab.activeBackground": "#41476b", | |
"tab.inactiveBackground": "#2f343f", | |
"tab.border": "#2f343f", | |
"activityBar.background": "#2f343f", | |
"sideBar.background": "#2f343f", | |
"sideBar.border": "#353957", | |
"list.hoverBackground": "#3b4061", | |
"list.inactiveSelectionBackground": "#3b4061", | |
"list.activeSelectionBackground": "#3b4061", | |
"statusBar.background": "#2f343f", | |
"statusBar.noFolderBackground": "#2f343f", | |
"sideBarSectionHeader.background": "#2f343f", | |
"panel.border": "#353957", | |
"panel.border_": "#272a40", | |
"editorIndentGuide.background": "#353957" | |
}, | |
"editor.fontFamily": "SF Mono, Consolas, 'Courier New', monospace", | |
"editor.fontSize": 12, | |
"editor.fontWeight": "100", | |
"terminal.integrated.fontFamily": "SF Mono, Consolas, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 12, | |
"editor.minimap.enabled": false, | |
"editor.renderIndentGuides": true, | |
"editor.overviewRulerBorder": false, | |
"workbench.activityBar.visible": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.panel.location": "bottom", | |
"explorer.confirmDragAndDrop": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment