Created
September 30, 2019 07:49
-
-
Save leohxj/973e42232a3749368452454c1ef4c460 to your computer and use it in GitHub Desktop.
vsc setting for ngte
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
{ | |
"editor.fontFamily": "FiraCode-Retina", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 18, | |
"editor.dragAndDrop": false, | |
"editor.minimap.renderCharacters": false, | |
"editor.roundedSelection": false, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": true, | |
"strings": true | |
}, | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [ | |
80, | |
100, | |
120 | |
], | |
"editor.wordWrap": "on", | |
"editor.tabSize": 2, | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBackground": "#324149", | |
"activityBarBadge.background": "#c678dd", | |
"tab.activeBorder": "#c678dd", | |
"panelTitle.activeBorder":"#c678dd", | |
"panel.border": "#5c6370" | |
}, | |
"workbench.editor.labelFormat": "medium", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.editor.tabCloseButton": "off", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.fontAliasing": "antialiased", | |
"window.zoomLevel": 0, | |
"window.newWindowDimensions": "inherit", | |
"window.title": "${activeEditorMedium}${separator}${rootName}", | |
"files.exclude": { | |
"**/node_modules": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
主要是界面部分:
workbench.colorCustomizations
和字体部分保持下同步。