Last active
August 14, 2018 11:19
-
-
Save zerob13/37a5005e444d2f2d2ec6d691c1b34ce7 to your computer and use it in GitHub Desktop.
Revisions
-
zerob13 revised this gist
Aug 14, 2018 . 1 changed file with 46 additions and 44 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ { "workbench.colorTheme": "Atom One Dark", "editor.tabSize": 2, "files.exclude": { "**/.git": true, @@ -20,42 +20,21 @@ "vim.handleKeys": { "<C-y>": true }, "vim.normalModeKeyBindingsNonRecursive": [ { "before": ["<C-n>"], "after": ["g", "c"] }, { "before": ["g", "c"], "after": ["g", "b"] }, { "before": ["g", "C"], "after": ["g", "B"] }, { "before": ["leader", "f", "f"], "after": [], "commands": [ { @@ -65,19 +44,42 @@ ] } ], "workbench.iconTheme": "material-icon-theme", "workbench.colorCustomizations": { "statusBar.background": "#005f5f", "statusBar.noFolderBackground": "#005f5f", "statusBar.debuggingBackground": "#005f5f" }, "material-icon-theme.showUpdateMessage": false, "editor.multiCursorModifier": "ctrlCmd", "eslint.validate": [ "javascript", "javascriptreact", "html", "vue", { "language": "html", "autoFix": true } ], "editor.minimap.enabled": false, "prettier.singleQuote": true, "prettier.semi": false, "prettier.trailing_comma": "none", "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatterOptions": { "wrap_attributes": "force-aligned" }, "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript" }, "emmet.includeLanguages": { "wxml": "html" }, "minapp-vscode.disableAutoConfig": true, "editor.formatOnPaste": false, "editor.formatOnSave": false, "editor.formatOnType": false } -
Lingfeng Yang created this gist
May 21, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,83 @@ { "workbench.colorTheme": "Material", "editor.tabSize": 2, "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true }, "editor.lineNumbers": "off", "editor.insertSpaces": true, "editor.fontSize": 16, "vim.easymotion": true, "vim.incsearch": true, "vim.useSystemClipboard": true, "vim.useCtrlKeys": true, "vim.hlsearch": true, "vim.leader": ",", "vim.handleKeys": { "<C-y>": true }, "vim.otherModesKeyBindingsNonRecursive": [ { "before": [ "<C-n>" ], "after": [ "g", "c" ] }, { "before": [ "g", "c" ], "after": [ "g", "b" ] }, { "before": [ "g", "C" ], "after": [ "g", "B" ] }, { "before": [ "leader", "f", "f" ], "after": [], "commands": [ { "command": "editor.action.formatDocument", "args": [] } ] } ], "vim.statusBarColorControl": true, "vim.statusBarColors": { "normal": "#005f5f", "insert": "#5f0000", "visual": "#5f00af", "visualline": "#005f87", "visualblock": "#86592d", "replace": "#000000" }, "workbench.iconTheme": "material-icon-theme", "workbench.colorCustomizations": { "statusBar.background": "#5f00af", "statusBar.noFolderBackground": "#5f00af", "statusBar.debuggingBackground": "#5f00af" } }