LoginSignup
3
0

More than 5 years have passed since last update.

VS-Codeの設定開発しやすくする

Last updated at Posted at 2018-10-03

自分のメモを公開します。好きな方が理由に利用ください

Install

  • ここにダウンロードしてください

List extensions

HTML

おすすめのユーザー設定

  • この設定のままで使える
settings.json
{
    "editor.rulers": [80, 120], //一行の文字限定の設定
    "files.autoSave": "onFocusChange", // 自動でファイルを保存する
    "editor.tabSize": 2, //名前通り
    "editor.renderWhitespace": "boundary", // スペースの表示
    "markdown.preview.breaks": true,
    "editor.mouseWheelZoom": true,
    "workbench.activityBar.visible": true,
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "editor.cursorBlinking": "phase",
    "editor.wordWrap": "on",
    "files.trimFinalNewlines": true,
    "editor.tabCompletion": true,
    "editor.formatOnPaste": false,
    "vim.startInInsertMode": true,
    "explorer.confirmDelete": false,
    "terminal.explorerKind": "external",
    "terminal.external.linuxExec": "iterm",
    "vim.useCtrlKeys": false,
    "vim.autoSwitchInputMethod.enable": true,
    "prettier.eslintIntegration": true,
    "prettier.arrowParens": "always",
    "prettier.proseWrap": "always",
    "prettier.requireConfig": true,
    "prettier.singleQuote": true,
    "ruby.format": "rubocop",
    "ruby.intellisense": "rubyLocate",
    "ruby.codeCompletion": "rcodetools",
    "explorer.confirmDragAndDrop": false,
    "gitlens.advanced.messages": {
        "suppressLineUncommittedWarning": true
    },
    "breadcrumbs.enabled": true,
    "editor.lineNumbers": "on",
    "auto-close-tag.SublimeText3Mode": true,
    "auto-close-tag.fullMode": true,
    "html.format.endWithNewline": true,
    "git.autofetch": true,
    "html.format.indentHandlebars": true,
    "html.format.indentInnerHtml": true,
}

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0