LoginSignup
0
1

More than 3 years have passed since last update.

自分用 VSCODE 設定MEMO

Posted at

PCの移行時に困らないよう、VSCODEの設定を記録しておく

PC側の設定

vimでnormal modeに戻る際に、日本語入力をオフにする。

vimで日本語を書いているときにnormal modeに戻るときは、ほとんどの場合移動などのvimのコマンドを押したいことが多い。そのためには日本語入力をオフにする必要があるため、毎回「Esc」→「半角」を押す必要がある。毎回押すなら「Esc」キーに両方に当てはめてしまって手間を省こう。
https://qiita.com/stackline/items/6a2e56e1f439cc47b098

setting.json

{  
    // システムのclipboardにコピー
    "vim.useSystemClipboard":true,

    // easymotion
    "vim.easymotion": true,

    // カーソル上にあるワードを"*"で検索
    "vim.visualstar": true,

    // 諸々のctrlキーを使った操作が有効になる
    "vim.useCtrlKeys": true,
}
0
1
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
0
1