16
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Visual Studio Code の設定メモ

Posted at

cloudpack あら便利カレンダー 2017 の7日目です。

Visual Studio Code の、今使っている設定をチラ裏するだけの記事です。

前提

  • Visual Studio Code Version 1.12.2

書いた人

  • OS は Windows と Mac を使っている。 Linux のデスクトップはほとんど使わない
  • コードを書くほかに各種設定ファイル、どこかにメールや投稿したりする日本語の下書きにも使う
  • 主な使用言語
    • JavaScript
    • TypeScript
    • Ruby
    • Go
  • エディター遍歴
    • (なんか使ってたけど覚えてない)
    • SublimeText 2
    • Atom
    • VSCode
  • キーボードは US 配列が好き
  • サーバーに ssh で入った時は vim 使ってる
  • Emacs は10分くらいしか使ったことない…
  • 意識が低い
    • すぐにマウスに手が伸びる
    • ホームポジションを離れても悪びれない
    • 忘れっぽい
  • 最近 Razer のキーボードを買いました
    • めっちゃ光るちょうたのしい

方針

  • 極力デフォルトの状態に馴れる
  • それでも足したい機能や変更したいキーバインドがあれば適宜やっていく

内容

Settings

  • Fira Code は最初はそこまでする?って懐疑的だったけど使ってみたら超良かった。その前は Ricty を使ってた
  • フォントサイズは状況に応じてショートカット(Win なら ctrl+-, ctrl+=, Mac なら cmd+-, cmd+=)で適宜変更する
settings.json
{
    "window.zoomLevel": 0,
    "editor.tabSize": 2,
    "editor.fontFamily": "Fira Code",
    "editor.fontSize": 14,
    "editor.fontLigatures": true,
    "editor.wordWrap": "on",
    "editor.minimap.enabled": true,
    "git.confirmSync": false,
    "files.insertFinalNewline": true
}

Key Bindings

macOS ではデフォルトで使える Emacs 風味のキーバインドをわりと使うので、それを Windows でも使えるように。デフォルトのキーバインドとぶつかる部分は、基本的に元の機能を修飾キー足して退避。

Emacs 風味のカーソル移動以外で入れてる変更は以下など。

  • ctrl+g, ctrl+shift+g: バッファー内検索で次または前の一致に移動
    • Chrome とかで使えるやつ。デフォは F3 だけどちょっと遠いので。
  • ctrl+j: 後述の jumpy という Extension を起動
keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
  {
    "key": "ctrl+a",
    "command": "cursorHome",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+a",
    "command": "cursorHomeSelect"
  },
  {
    "key": "alt+a",
    "command": "editor.action.selectAll"
  },
  {
    "key": "ctrl+b",
    "command": "cursorLeft",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+b",
    "command": "cursorLeftSelect",
    "when": "editorTextFocus"
  },
  {
    "key": "alt+b",
    "command": "cursorWordLeft",
    "when": "editorTextFocus"
  },
  {
    "key": "shift+alt+b",
    "command": "cursorWordLeftSelect",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+alt+b",
    "command": "workbench.action.toggleSidebarVisibility"
  },
  {
    "key": "ctrl+alt+shift+b",
    "command": "workbench.action.tasks.build"
  },
  {
    "key": "ctrl+d",
    "command": "deleteRight",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+shift+d",
    "command": "editor.action.addSelectionToNextFindMatch"
  },
  {
    "key": "ctrl+shift+alt+d",
    "command": "workbench.view.debug"
  },
  {
    "key": "ctrl+e",
    "command": "cursorEnd",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+shift+e",
    "command": "cursorEndSelect",
    "when": "editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+alt+e",
    "command": "workbench.view.explorer"
  },
  {
    "key": "ctrl+f",
    "command": "cursorRight",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+f",
    "command": "cursorRightSelect",
    "when": "editorTextFocus"
  },
  {
    "key": "alt+f",
    "command": "cursorWordRight",
    "when": "editorTextFocus"
  },
  {
    "key": "shift+alt+f",
    "command": "cursorWordRightSelect"
  },
  {
    "key": "ctrl+alt+f",
    "command": "workbench.view.search"
  },
  {
    "key": "ctrl+shift+alt+f",
    "command": "editor.action.formatDocument",
    "when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
  },
  {
    "key": "ctrl+g",
    "command": "editor.action.nextMatchFindAction"
  },
  {
    "key": "ctrl+g",
    "command": "actions.find",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+g",
    "command": "editor.action.previousMatchFindAction"
  },
  {
    "key": "ctrl+alt+g",
    "command": "workbench.view.scm"
  },
  {
    "key": "ctrl+h",
    "command": "deleteLeft"
  },
  {
    "key": "ctrl+shift+h",
    "command": "editor.action.startFindReplaceAction"
  },
  {
    "key": "ctrl+alt+h",
    "command": "workbench.action.replaceInFiles"
  },
  {
    "key": "ctrl+j",
    "command": "extension.jumpy-word"
  },
  {
    "key": "alt+j",
    "command": "workbench.action.togglePanel"
  },
  {
    "key": "ctrl+l",
    "command": "workbench.action.quickOpen"
  },
  {
    "key": "ctrl+n",
    "command": "cursorDown",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+n",
    "command": "cursorDownSelect",
    "when": "editorTextFocus"
  },
  {
    "key": "alt+n",
    "command": "workbench.action.files.newUntitledFile"
  },
  {
    "key": "alt+shift+n",
    "command": "workbench.action.newWindow"
  },
  {
    "key": "ctrl+p",
    "command": "cursorUp",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+p",
    "command": "cursorUpSelect",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+y",
    "command": "workbench.action.showCommands"
  }
]

Extensions

各言語固有の機能拡張はそれを書くときに適宜入れればいいと思うので、汎用的で便利に使えるやつをご紹介。

  • indent-rainbow
    • 爆発的にインデントが見やすくなる
  • jumpy
    • 複雑なキーバインド覚えられない人への大いなる福音。ただ1回ショートカットを押して、行きたい位置のラベルを打てばそこに行ける、脳にやさしい
  • Settings Sync
    • VSCode の設定を複数マシン間で同期できる。 Gist をバックエンドにしているところが面白い
  • empty-indent
    • 空行にスペースだけがあるのキモいので
16
14
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
16
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?