Created
August 8, 2018 17:28
-
-
Save h1romas4/3b7d87b28bc7bddb4687059c1d67ac02 to your computer and use it in GitHub Desktop.
VS Code のユーザー設定
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
// 既定の設定を上書きするには、このファイル内に設定を挿入します | |
{ | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Ricty, Consolas, 'Courier New', monospace", | |
"editor.renderIndentGuides": true, | |
"window.zoomLevel": 0, | |
"window.menuBarVisibility": "toggle", | |
"php.suggest.basic": false, | |
"workbench.iconTheme": "vs-minimal", | |
"editor.minimap.enabled": false, | |
"zenMode.hideTabs": false, | |
"java.referencesCodeLens.enabled": false, | |
// "java.home": "C:\\Program Files\\Java\\jdk1.8.0_131", | |
"window.restoreWindows": "none", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.smoothScrolling": true, | |
"terminal.integrated.fontFamily": "'Ricty Diminished Discord for Powerline'", | |
"extensions.ignoreRecommendations": true, | |
"git.confirmSync": false, | |
"zenMode.hideActivityBar": true, | |
"zenMode.hideStatusBar": true, | |
"java.jdt.ls.vmargs": "-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication -Dfile.encoding=UTF-8", | |
"C_Cpp.intelliSenseEngine": "Tag Parser", | |
"files.hotExit": "off", | |
"workbench.editor.tabSizing": "fit", | |
"terminal.integrated.enableBell": false, | |
"search.location": "panel", | |
"terminal.integrated.shell.windows": "", | |
"git.autofetch": true, | |
"window.titleBarStyle": "custom", | |
"markdown.preview.scrollEditorWithPreview": true, | |
"markdown.preview.scrollPreviewWithEditor": true, | |
"emmet.includeLanguages": { "htmltag": "html" }, | |
"files.associations": { | |
"*.tag": "html" | |
}, | |
"breadcrumbs.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment