Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created September 30, 2019 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leohxj/973e42232a3749368452454c1ef4c460 to your computer and use it in GitHub Desktop.
Save leohxj/973e42232a3749368452454c1ef4c460 to your computer and use it in GitHub Desktop.
vsc setting for ngte
{
"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
}
}
@leohxj
Copy link
Author

leohxj commented Sep 30, 2019

主要是界面部分:workbench.colorCustomizations 和字体部分保持下同步。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment