Skip to content

Instantly share code, notes, and snippets.

@khrtz
Created September 23, 2018 19:42
Show Gist options
  • Save khrtz/fa946f50798f1f2e675e36424a4193f6 to your computer and use it in GitHub Desktop.
Save khrtz/fa946f50798f1f2e675e36424a4193f6 to your computer and use it in GitHub Desktop.
vscode setting
{
"editor.wordWrap": "off",
"window.zoomLevel": 0,
"workbench.colorTheme": "Dracula",
"editor.tabSize": 2,
"editor.renderWhitespace": "all", // スペースの表示
"editor.insertSpaces": true,
"workbench.iconTheme": "vs-seti",
"workbench.activityBar.visible": true, // default
"flow.pathToFlow": "./node_modules/.bin/flow",
"javascript.validate.enable": false,
"atomKeymap.promptV3Features": true,
// Changes the multi cursor mouse binding
"editor.multiCursorModifier": "ctrlCmd",
// Controls whether format on paste is on or off
"editor.formatOnPaste": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/tmp": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true,
"**/.happypack": true,
"**/assets": false,
"**/build": true,
"**/coverage": true,
"**/vendor": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/bower_components/**": true,
"**/dist/**": true,
"**/.happypack/**": true,
"**/assets/**": false,
"**/build/**": true,
"**/coverage/**": true
},
"tslint.ignoreDefinitionFiles": false,
"window.nativeTabs": true,
"workbench.editor.showTabs": true,
"workbench.editor.enablePreview": false,
"go.gopath": "/Users/a14504/go",
"go.formatOnSave": true,
"solidity.compileUsingRemoteVersion": "latest",
"solidity.linter": "solium",
"solidity.soliumRules": {
"quotes": ["error", "double"],
"indentation": ["error", 4]
},
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
"terminal.integrated.scrollback": 10000,
"typescript.referencesCodeLens.enabled": true,
"editor.smoothScrolling": true,
"workbench.statusBar.feedback.visible": false,
"workbench.fontAliasing": "auto",
"editor.codeLens": false,
"editor.hover.delay": 200,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"github.hosts": [
{
"host": "https://github.com",
"username": "oauth",
"token": "system"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment