VScode を久しぶりに使うので設定をまとめておく
why
TS を使う必要性が出てきた
共通設定
"editor.fontSize": 16 "files.autoSave": "afterDelay"
- 文字が12では小さいから16にする
- 最初は自動保存が有効化されていないから設定をしなければいけない
Vim からの以降
insert jj to normal
- 考えてやる必要がある?
- VScode ないのアプリのページにあるがコピーできない
{ "vim.easymotion": true, "vim.incsearch": true, "vim.useSystemClipboard": true, "vim.useCtrlKeys": true, "vim.hlsearch": true, "vim.insertModeKeyBindings": [ { "before": ["j", "j"], "after": ["<Esc>"] } ], "vim.normalModeKeyBindingsNonRecursive": [ { "before": ["<leader>", "d"], "after": ["d", "d"] }, { "before": ["<C-n>"], "commands": [":nohl"] } ], "vim.leader": "<space>", "vim.handleKeys": { "<C-a>": false, "<C-f>": false } }
これに さっきの "editor.fontSize": 16
を追加