Skip to content

Instantly share code, notes, and snippets.

@mackjoner
Last active January 8, 2018 09:31
Show Gist options
  • Save mackjoner/59a0223404b7e908f8c820af139244f8 to your computer and use it in GitHub Desktop.
Save mackjoner/59a0223404b7e908f8c820af139244f8 to your computer and use it in GitHub Desktop.
code config
{
"editor.fontSize": 14,
"editor.fontFamily": "Menlo",
"workbench.colorTheme": "One Dark Pro",
"window.zoomLevel": 0,
"terminal.integrated.fontFamily": "Droid Sans Mono Dotted for Powerline",
"terminal.integrated.fontSize": 12,
"typescript.check.npmIsInstalled": false,
"workbench.iconTheme": "vscode-icons",
// js format
"beautify.config": "~/.jsbeautifyrc",
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautify"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html"
]
},
// python
"python.venvPath": "~/Envs",
"python.sortImports.args": ["-rc", "--atomic"],
// "python.formatting.formatOnSave": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "yapf",
// "python.formatting.autopep8Args": ["--max-line-length", "120", "--experimental"],
"python.formatting.yapfArgs": [
"--style",
"{based_on_style: chromium, indent_width: 4}"
],
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment