Skip to content

Instantly share code, notes, and snippets.

@phantomk
Last active June 21, 2018 02:59
Show Gist options
  • Save phantomk/3f7e53640e48e9971f6481364f70092c to your computer and use it in GitHub Desktop.
Save phantomk/3f7e53640e48e9971f6481364f70092c to your computer and use it in GitHub Desktop.
VS code settings
{
"workbench.iconTheme": "vscode-icons",
// "cSpell.userWords": [
// "APPID",
// "APPSECRET",
// "CLOUDSTORE",
// "Eshine",
// "Evernote",
// "Paymentconfig",
// "Tuan",
// "aggs",
// "alipay",
// "apikey",
// "channle",
// "csrf",
// "ecloudorders",
// "elasticsearch",
// "eleme",
// "hgetall",
// "hmset",
// "itgcloud",
// "kuzzle",
// "meituan",
// "memberof",
// "openapi",
// "ordertpl",
// "precommit",
// "promisify",
// "typora",
// "upsert",
// "wechat",
// "wpbackend",
// "wxpay"
// ],
"workbench.sideBar.location": "right",
"window.openFilesInNewWindow": "on",
"window.restoreWindows": "all",
"window.openFoldersInNewWindow": "on",
"editor.lineNumbers": "relative",
"editor.snippetSuggestions": "top",
"editor.cursorStyle": "block",
"editor.renderLineHighlight": "none",
"editor.lineHeight": 24,
"editor.minimap.enabled": false,
"debug.allowBreakpointsEverywhere": true,
"editor.fontFamily": "'Fantasque Sans Mono', 'Fira Code', 'Operator Mono', 'iosevka', 'inconsolata', 'Ubuntu Mono'",
"editor.fontSize": 14,
// Enables font ligatures
"editor.fontLigatures": true,
// Controls if file decorations should use badges.
"explorer.decorations.badges": false,
"window.zoomLevel": 0,
"workbench.colorTheme": "Eva Light",
"workbench.activityBar.visible": true,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"docthis.includeDescriptionTag": true,
"docthis.enableHungarianNotationEvaluation": true,
"docthis.inferTypesFromNames": true,
"docthis.includeAuthorTag": true,
"docthis.authorName": "phantomk",
"editor.fontWeight": "100",
"workbench.tips.enabled": false,
"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": "#669D5B",
"list.activeSelectionForeground": "#669D5B",
"list.inactiveSelectionForeground": "#669D5B",
"list.highlightForeground": "#669D5B",
"scrollbarSlider.activeBackground": "#669D5B",
"editorSuggestWidget.highlightForeground": "#669D5B",
"textLink.foreground": "#669D5B",
"progressBar.background": "#669D5B",
"pickerGroup.foreground": "#669D5B",
"tab.activeBorder": "#669D5B"
},
// "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": [
"()",
"[]",
"{}",
[
"black",
"maroon",
"darkolivegreen"
],
"Red"
],
"todohighlight.isEnable": true,
"todohighlight.keywords": [
{
"text": "NOTE:",
"color": "#fff",
"backgroundColor": "#5cc9f5",
"overviewRulerColor": "grey"
},
{
"text": "HACK:",
"color": "#fff",
"backgroundColor": "#669D5B",
"overviewRulerColor": "grey"
},
{
"text": "BUG:",
"color": "#fff",
"backgroundColor": "red",
"overviewRulerColor": "grey"
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment