Skip to content

Instantly share code, notes, and snippets.

@nekko1119
Last active August 20, 2018 07:28
Show Gist options
  • Select an option

  • Save nekko1119/06773b479937516d4c1b36daf826be6e to your computer and use it in GitHub Desktop.

Select an option

Save nekko1119/06773b479937516d4c1b36daf826be6e to your computer and use it in GitHub Desktop.
自分のvscodeの設定ファイル。fuHDモニタとWQHDモニタで文字サイズ変える為分けてる
// Place your settings in this file to overwrite the default settings
{
// Editor
"editor.fontFamily": "Consolas, Meiryo",
"editor.fontSize": 14,
"editor.lineHeight": 16,
"editor.rulers": [
120
],
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "all",
// Workbench
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.quickOpen.closeOnFocusLost": false,
// Window
"window.zoomLevel": 0,
"window.openFilesInNewWindow": "on",
"window.openFoldersInNewWindow": "on",
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/.idea": true
},
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// Debug
"debug.inlineValues": true,
// Typescripts
"javascript.validate.enable": false,
"eslint.enable": false,
"typescript.validate.enable": false,
"typescript.check.tscVersion": false,
"typescript.referencesCodeLens.enabled": true,
// Extensions
"extensions.autoUpdate": true,
// Integrated Terminal
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
// "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe",
"terminal.integrated.fontSize": 16,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Darcula",
"workbench.iconTheme": "vscode-icons",
"[cpp]": {
"editor.quickSuggestions": false
}
}
// Place your settings in this file to overwrite the default settings
{
// Editor
"editor.autoIndent": true,
"editor.fontFamily": "RictyDiminished, Bitstream Vera Sans Mono, Consolas, Meiryo",
"editor.fontSize": 13.5,
"editor.lineHeight": 17,
"editor.rulers": [
100,
120
],
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "all",
// Workbench
"workbench.activityBar.visible": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.tabSizing": "shrink",
"workbench.iconTheme": "vscode-icons",
"workbench.quickOpen.closeOnFocusLost": false,
// Window
"window.zoomLevel": 0,
"window.openFilesInNewWindow": "on",
"window.openFoldersInNewWindow": "on",
"window.smoothScrollingWorkaround": true,
"window.titleBarStyle": "custom",
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/.idea": true
},
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 5000,
// Debug
"debug.inlineValues": true,
// Typescripts
"javascript.validate.enable": false,
"typescript.validate.enable": true,
"typescript.referencesCodeLens.enabled": true,
// Extensions
"extensions.autoUpdate": true,
// Integrated Terminal
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontFamily": "Bitstream Vera Sans Mono",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 0.9,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"vsicons.dontShowNewVersionMessage": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": true,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": false
},
"gitlens.keymap": "alternate",
"gitlens.historyExplorer.enabled": true,
"sync.gist": "f01676a504265e80ecaea2d699fbc274",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastUpload": "2018-08-08T02:33:33.345Z",
"sync.lastDownload": "",
"sync.forceDownload": false,
"workbench.colorTheme": "Darcula",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment