Skip to content

Instantly share code, notes, and snippets.

@liangzr
Created November 7, 2017 03:01
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 liangzr/645b91374c812e7ca40bf9c8a01487e6 to your computer and use it in GitHub Desktop.
Save liangzr/645b91374c812e7ca40bf9c8a01487e6 to your computer and use it in GitHub Desktop.
my vsc settings
{
"workbench.colorTheme": "Sublime Material Theme - Dark",
"eslint.options": {
"configFile": "/Users/liangzr/.vscode/configs/.eslintrc"
},
"vim.enableNeovim": false,
"vim.disableAnnoyingNeovimMessage": true,
"vim.useSystemClipboard": true,
"window.zoomLevel": 0,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
// 配置 glob 模式以排除文件和文件夹。
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.history": true
},
"workbench.iconTheme": "material-icon-theme",
"window.nativeTabs": true,
"workbench.editor.showTabs": false,
"explorer.openEditors.visible": 0,
// "editor.minimap.enabled": false,
"tslint.jsEnable": false,
"tslint.configFile": "/Users/liangzr/.vscode/configs/tslint.json",
"editor.tabSize": 2,
"emmet.showExpandedAbbreviation": "never",
"emmet.showAbbreviationSuggestions": false,
"editor.fontFamily": "Monaco, 'Courier New', monospace",
"files.autoSave": "onWindowChange",
"editor.cursorStyle": "underline",
"editor.fontSize": 11,
"editor.lineHeight": 22,
// Custom Color Theme
"workbench.colorCustomizations": {
"sideBar.background": "#1A1A1A",
"list.inactiveSelectionBackground": "#212121",
"list.activeSelectionBackground": "#212121",
"scrollbarSlider.background": "#f4433600",
// "scrollbar.shadow": "#f44336",
// "editorLineNumber.foreground": "#7abeaa",
// "editorGroup.border": "#f44336",
"editor.background": "#212121",
"editor.foreground": "#eeffff",
"editor.selectionBackground": "#80cbc420",
"editor.lineHighlightBackground": "#1A1A1A",
"editorCursor.foreground": "#ffc800",
"editorWhitespace.foreground": "#65737e",
"editorIndentGuide.background": "#37474f80",
"statusBar.background": "#08755a8f"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Tag",
"scope": "entity.name.tag, meta.tag.sgml, markup.deleted.git_gutter",
"settings": {
"foreground": "#f07178"
}
},
{
"name": "ObjectName",
"scope": "variable.other.object",
"settings": {
"foreground": "#FF5370"
}
},
{
"name": "Constant",
"scope": "variable.other.constant",
"settings": {
"foreground": "#ff8282"
}
},
{
"name": "ConstantProperty",
"scope": "variable.other.constant.property",
"settings": {
"foreground": "#82aaff"
}
},
{
"name": "ConstantObject",
"scope": "variable.other.constant.object",
"settings": {
"foreground": "#FFCB6B"
}
}
]
},
"workbench.fontAliasing": "default"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment