vscode vimを利用する#
プラグインをインストール#
Vimプラグインをインストールする
setting.jsonに設定を追記#
vscode settings.jsonに以下を追記
{
"vim.vimrc.enable": true,
"vim.vimrc.path": "~/.vimrc",
}
なお[vimrcの設定適用はまだ不完全](https://github.com/VSCodeVim/Vim#vimrc-support)なため、リマッピング設定のみしか適用されない
jj
でinsertモード解除設定を追加したい場合は以下も追記
"vim.insertModeKeyBindings": [
{
"before": ["j","j"],
"after": ["<Esc>"]
}
]