poyo-poyo
4/29/2018 - 5:50 PM

Visual Studio Code Settings Sync Gist

Visual Studio Code Settings Sync Gist

{"version":"7.23.0","status":2,"welcomeShown":true}
{
	"scanner": {
		"prefix": "scanner",
		"body": [
			"void rd(T...)(ref T x){",
			"\timport std.stdio, std.string, std.conv;",
			"\tauto l=readln.split;",
			"\tassert(l.length==x.length);",
			"\tforeach(i, ref e; x) e=l[i].to!(typeof(e));",
			"}"
		],
		"description": "scan std input"
	}
}
{
	"competitive": {
    "prefix": "comp",
    "body": [
      "#include<iostream>",
      "#include<vector>",
      "#include<algorithm>",
      "using namespace std;",
      "",
      "#define rep(i,n) for(int i=0;i<(n);i++)",
      "",
      "int main(){",
      "",
      "\t$1",
      "",
      "\treturn 0;",
      "}"
    ],
    "description": "competitive programming template"
  }
}
{
    "window.zoomLevel": 1,
    "editor.tabSize": 2,
    "editor.quickSuggestions": true,
    "editor.fontFamily": "consolas, monospace",
    "workbench.activityBar.visible": false,
    "editor.minimap.renderCharacters": false,
    "editor.minimap.enabled": false,
    // "workbench.statusBar.visible": true,
    // "python.disablePromptForFeatures": [
    // "pylint"
    // ],
    "latex-workshop.latex.autoBuild.onSave.enabled": false,
    "code-runner.executorMap": {
        "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
    },
    "editor.wordWrap": "bounded",
    "editor.wordWrapColumn": 100,
    "[markdown]": {
        "editor.wordWrap": "wordWrapColumn",
        "editor.quickSuggestions": true,
        "editor.tabSize": 4
    },
    "update.channel": "none",
    "window.menuBarVisibility": "toggle",
    "terminal.integrated.shell.linux": "/usr/bin/fish",
    "terminal.integrated.cursorStyle": "line",
    "editor.tokenColorCustomizations": { // 斜体キャンセル
        "textMateRules": [
            {
                "scope": [
                    "comment",
                    "variable.parameter"
                ],
                "settings": {
                    "fontStyle": ""
                }
            }
        ]
    },
    "workbench.iconTheme": "file-icons",
    "latex-workshop.latex.tools": [
        {
            "name": "lualatex-chain",
            "command": "luajitlatex",
            "args": [
                // "--cmdx",
                "-file-line-error",
                "-halt-on-error",
                "--fmt=luajitlatex.fmt",
                "%DOCFILE%"
            ]
        }
    ],
    "latex-workshop.latex.recipes": [
        {
            "tools": [
                "lualatex-chain"
            ]
        },
    ],
    "latex-workshop.view.pdf.viewer": "tab",
    "markdown.preview.fontSize": 18,
    // settingのsync
    "sync.gist": "5b30d689d706960af1e817ab2fa74c19",
    "sync.lastUpload": "2018-05-29T22:16:10.201Z",
    "sync.autoDownload": false,
    "sync.autoUpload": false,
    "sync.lastDownload": "",
    "sync.forceDownload": false,
    "sync.host": "",
    "sync.pathPrefix": "",
    "sync.quietSync": false,
    "sync.askGistName": false,
    "sync.removeExtensions": true,
    "sync.syncExtensions": true,
    // settingのsync ここまで
    "[php]": {
        "editor.quickSuggestions": true,
        "editor.tabSize": 4
    },
    "php-cs-fixer.executablePath": "/home/ikd/.vscode/ikeda/php-cs-fixer-v2.phar", // .vscode以下に置く必要があるっぽい
    "[html]": {
        "editor.tabSize": 4
    },
}
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
  {
    "key": "ctrl+[BracketLeft]",
    "command": "workbench.action.terminal.focus"    
  },
  {
    "key": "ctrl+shift+alt+pagedown",
    "command": "editor.action.insertCursorBelow",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+down",
    "command": "-editor.action.insertCursorBelow",
    "when": "editorTextFocus"
  },
  {
    "key": "alt+shift+down",
    "command": "editor.action.copyLinesDownAction",
    "when": "editorTextFocus && !editorReadonly"
  },
  // {
  //   "key": "ctrl+shift+[",
  //   "command": "workbench.action.terminal.toggleTerminal"
  // },
  {
    "key": "ctrl+shift+[Quote]",
    "command": "-workbench.action.terminal.toggleTerminal",    
  },
  {
    "key": "ctrl+alt+v",
    "command": "-latex-workshop.view",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+m",
    "command": "extension.jumpy-word"
  },
  {
    "key": "ctrl+m",
    "command": "-editor.action.toggleTabFocusMode"
  },
  {
    "key": "shift+alt+up",
    "command": "-editor.action.insertCursorAbove",
    "when": "editorTextFocus"
  },
  {
    "key": "shift+alt+up",
    "command": "editor.action.copyLinesUpAction",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+shift+alt+up",
    "command": "-editor.action.copyLinesUpAction",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "enter",
    "command": "-acceptSelectedSuggestionOnEnter",
    "when": "acceptSuggestionOnEnter && editorTextFocus && suggestWidgetVisible && suggestionMakesTextEdit"
  },
  {
    "key": "ctrl+]",
    "command": "editor.action.indentLines",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+]",
    "command": "-editor.action.indentLines",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+[",
    "command": "editor.action.outdentLines",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+[",
    "command": "-editor.action.outdentLines",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+/",
    "command": "erb.toggleTags",
    "when": "editorTextFocus && editorLangId == erb"
  },
]
[
  {
    "metadata": {
      "id": "d3836729-9cc1-42c1-b2af-d50071f57d29",
      "publisherId": "formulahendry.auto-close-tag",
      "publisherDisplayName": "formulahendry"
    },
    "name": "auto-close-tag",
    "publisher": "formulahendry",
    "version": "0.5.6"
  },
  {
    "metadata": {
      "id": "366a9f01-2d1b-48b9-b7df-014ff8dea46b",
      "publisherId": "formulahendry.auto-complete-tag",
      "publisherDisplayName": "formulahendry"
    },
    "name": "auto-complete-tag",
    "publisher": "formulahendry",
    "version": "0.0.2"
  },
  {
    "metadata": {
      "id": "6e440e71-8ed9-4f25-bb78-4b13096b8a03",
      "publisherId": "formulahendry.auto-rename-tag",
      "publisherDisplayName": "formulahendry"
    },
    "name": "auto-rename-tag",
    "publisher": "formulahendry",
    "version": "0.0.15"
  },
  {
    "metadata": {
      "id": "464f4ac7-af65-4aa9-9907-4ba7fa419085",
      "publisherId": "bungcip.better-toml",
      "publisherDisplayName": "bungcip"
    },
    "name": "better-toml",
    "publisher": "bungcip",
    "version": "0.3.2"
  },
  {
    "metadata": {
      "id": "a6a0c5b2-d078-4bf5-a9ee-4e37054414b3",
      "publisherId": "formulahendry.code-runner",
      "publisherDisplayName": "formulahendry"
    },
    "name": "code-runner",
    "publisher": "formulahendry",
    "version": "0.9.3"
  },
  {
    "metadata": {
      "id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
      "publisherId": "Shan.code-settings-sync",
      "publisherDisplayName": "Shan"
    },
    "name": "code-settings-sync",
    "publisher": "Shan",
    "version": "2.9.2"
  },
  {
    "metadata": {
      "id": "690b692e-e8a9-493f-b802-8089d50ac1b2",
      "publisherId": "ms-vscode.cpptools",
      "publisherDisplayName": "ms-vscode"
    },
    "name": "cpptools",
    "publisher": "ms-vscode",
    "version": "0.17.3"
  },
  {
    "metadata": {
      "id": "7e3ea475-bf34-410c-b07e-109b538eee83",
      "publisherId": "faustinoaq.crystal-lang",
      "publisherDisplayName": "faustinoaq"
    },
    "name": "crystal-lang",
    "publisher": "faustinoaq",
    "version": "0.3.10"
  },
  {
    "metadata": {
      "id": "3824014e-ed93-47be-96be-aa94a7b9ef08",
      "publisherId": "dlang-vscode.dlang",
      "publisherDisplayName": "dlang-vscode"
    },
    "name": "dlang",
    "publisher": "dlang-vscode",
    "version": "0.9.0"
  },
  {
    "metadata": {
      "id": "f90de8e4-67c2-4437-86c7-e4fd7b11cab1",
      "publisherId": "formulahendry.extension-leaderboard",
      "publisherDisplayName": "formulahendry"
    },
    "name": "extension-leaderboard",
    "publisher": "formulahendry",
    "version": "0.0.2"
  },
  {
    "metadata": {
      "id": "43335a8d-5929-408b-874a-65f08362642c",
      "publisherId": "file-icons.file-icons",
      "publisherDisplayName": "file-icons"
    },
    "name": "file-icons",
    "publisher": "file-icons",
    "version": "1.0.12"
  },
  {
    "metadata": {
      "id": "5960f38e-0bbe-4644-8f9c-9c8824e82511",
      "publisherId": "donjayamanne.githistory",
      "publisherDisplayName": "donjayamanne"
    },
    "name": "githistory",
    "publisher": "donjayamanne",
    "version": "0.4.0"
  },
  {
    "metadata": {
      "id": "8e32b851-6d12-43d8-99f2-507f1bac629b",
      "publisherId": "kaiwood.indentation-level-movement",
      "publisherDisplayName": "kaiwood"
    },
    "name": "indentation-level-movement",
    "publisher": "kaiwood",
    "version": "1.1.1"
  },
  {
    "metadata": {
      "id": "61d03280-3919-4dd1-bce1-178ca21fdeaf",
      "publisherId": "James-Yu.latex-workshop",
      "publisherDisplayName": "James-Yu"
    },
    "name": "latex-workshop",
    "publisher": "James-Yu",
    "version": "5.5.0"
  },
  {
    "metadata": {
      "id": "1d66faf4-3266-4fce-b7c9-df60aecf496d",
      "publisherId": "goessner.mdmath",
      "publisherDisplayName": "goessner"
    },
    "name": "mdmath",
    "publisher": "goessner",
    "version": "2.2.1"
  },
  {
    "metadata": {
      "id": "6a16ba54-0fc8-4db6-be42-40cfc5696625",
      "publisherId": "LaurentTreguier.monokai-grey",
      "publisherDisplayName": "LaurentTreguier"
    },
    "name": "monokai-grey",
    "publisher": "LaurentTreguier",
    "version": "0.2.5"
  },
  {
    "metadata": {
      "id": "1f3d8d31-8ff8-4429-8565-7313f9c67971",
      "publisherId": "kosz78.nim",
      "publisherDisplayName": "kosz78"
    },
    "name": "nim",
    "publisher": "kosz78",
    "version": "0.5.29"
  },
  {
    "metadata": {
      "id": "4bf6506e-6c50-4d2a-a557-7e32dbfeb2e7",
      "publisherId": "victormejia.one-monokai-darker",
      "publisherDisplayName": "victormejia"
    },
    "name": "one-monokai-darker",
    "publisher": "victormejia",
    "version": "1.0.5"
  },
  {
    "metadata": {
      "id": "dcb2ffbf-e1f1-4305-947e-aef9084d176f",
      "publisherId": "brainsandspace.one-monokai-plus",
      "publisherDisplayName": "brainsandspace"
    },
    "name": "one-monokai-plus",
    "publisher": "brainsandspace",
    "version": "0.1.6"
  },
  {
    "metadata": {
      "id": "b06b65b2-6ea9-4045-b166-54aa63205261",
      "publisherId": "junstyle.php-cs-fixer",
      "publisherDisplayName": "junstyle"
    },
    "name": "php-cs-fixer",
    "publisher": "junstyle",
    "version": "0.1.80"
  },
  {
    "metadata": {
      "id": "5e69f001-f945-4c97-baf0-320d82a153b3",
      "publisherId": "felixfbecker.php-intellisense",
      "publisherDisplayName": "felixfbecker"
    },
    "name": "php-intellisense",
    "publisher": "felixfbecker",
    "version": "2.3.1"
  },
  {
    "metadata": {
      "id": "7d81f1eb-06a6-4288-bb1d-fe4e01764878",
      "publisherId": "primalmotion.primal",
      "publisherDisplayName": "primalmotion"
    },
    "name": "primal",
    "publisher": "primalmotion",
    "version": "1.0.5"
  },
  {
    "metadata": {
      "id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
      "publisherId": "ms-python.python",
      "publisherDisplayName": "ms-python"
    },
    "name": "python",
    "publisher": "ms-python",
    "version": "2018.4.0"
  },
  {
    "metadata": {
      "id": "f619f70d-ed44-47e6-824e-03d891afcbb2",
      "publisherId": "Increments.qiita",
      "publisherDisplayName": "Increments"
    },
    "name": "qiita",
    "publisher": "Increments",
    "version": "1.0.2"
  },
  {
    "metadata": {
      "id": "61048194-bd70-4abb-b039-d796bf6be01c",
      "publisherId": "bung87.rails",
      "publisherDisplayName": "bung87"
    },
    "name": "rails",
    "publisher": "bung87",
    "version": "0.5.7"
  },
  {
    "metadata": {
      "id": "dabdca65-a72d-450f-9583-46f8d3816c90",
      "publisherId": "siliconsenthil.rufo-vscode",
      "publisherDisplayName": "siliconsenthil"
    },
    "name": "rufo-vscode",
    "publisher": "siliconsenthil",
    "version": "0.0.3"
  },
  {
    "metadata": {
      "id": "788eca2a-19e9-4b4f-9a4a-92354b12cd23",
      "publisherId": "LaurentTreguier.sdlang",
      "publisherDisplayName": "LaurentTreguier"
    },
    "name": "sdlang",
    "publisher": "LaurentTreguier",
    "version": "0.1.2"
  },
  {
    "metadata": {
      "id": "56a57ae2-56b7-4053-a3e0-897e198f0d03",
      "publisherId": "vortizhe.simple-ruby-erb",
      "publisherDisplayName": "vortizhe"
    },
    "name": "simple-ruby-erb",
    "publisher": "vortizhe",
    "version": "0.2.1"
  },
  {
    "metadata": {
      "id": "66a5558f-9e27-4895-9c3e-dde3d657bc13",
      "publisherId": "sianglim.slim",
      "publisherDisplayName": "sianglim"
    },
    "name": "slim",
    "publisher": "sianglim",
    "version": "0.1.2"
  },
  {
    "metadata": {
      "id": "554a8f7e-ed5b-4304-a0f8-4d7ae25c7293",
      "publisherId": "wmontalvo.vsc-meta-snippet",
      "publisherDisplayName": "wmontalvo"
    },
    "name": "vsc-meta-snippet",
    "publisher": "wmontalvo",
    "version": "0.1.1"
  },
  {
    "metadata": {
      "id": "3f770365-3682-44ee-a63e-5ef1b16c74d2",
      "publisherId": "aeschli.vscode-css-formatter",
      "publisherDisplayName": "aeschli"
    },
    "name": "vscode-css-formatter",
    "publisher": "aeschli",
    "version": "1.0.1"
  },
  {
    "metadata": {
      "id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a",
      "publisherId": "robertohuertasm.vscode-icons",
      "publisherDisplayName": "robertohuertasm"
    },
    "name": "vscode-icons",
    "publisher": "robertohuertasm",
    "version": "7.23.0"
  }
]
{"lastUpload":"2018-05-31T14:03:52.902Z","extensionVersion":"v2.9.2"}