まずはデフォルトの履歴サイズを確認。以下のとおり50個だとわかる。
:verbose set history history=50 Last set from /usr/share/vim/vim74/debian.vim Press ENTER or type command to continue
これを変更するには、vim 内で :set history=9999 などの vim コマンドを実行する。または、設定を vimrc ファイルに書き込んで、設定を永続化させる。ここではシェルで以下のコマンドを実行。
$ echo set history=9999 >> ~/.vim/vimrc
実行後にvimを再起動するか :source /.vim/vimrc などを実行した後、変更内容を確認。
:verbose set history history=9999 Last set from ~/.vim/vimrc Press ENTER or type command to continue