Last active
August 14, 2018 11:19
-
-
Save zerob13/37a5005e444d2f2d2ec6d691c1b34ce7 to your computer and use it in GitHub Desktop.
My Visual Studio Code configure
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 characters
{ | |
"workbench.colorTheme": "Atom One Dark", | |
"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.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": [ | |
{ | |
"command": "editor.action.formatDocument", | |
"args": [] | |
} | |
] | |
} | |
], | |
"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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment