Vim 若不載入任何 .vimrc 的設定、外掛,就算要開很大的檔案,速度也是非常快速的。
但是若要開啟大檔,然後那個檔案又有顏色、格式、檢查等等,就會無比的慢,所以可以考慮先不載入任何 .vimrc 設定檔的方式開啟。
Vim 不載入任何 vimrc 的參數
VIM 不要載入任何 .vimrc 設定檔,可以使用 -u 的參數 + NONE,如下述:
- $ vim -u NONE
$ man vim 的說明如下:
- -u {vimrc}
- Use the commands in the file {vimrc} for initializations. All the other initializations are skipped.
- Use this to edit a special kind of files.
- It can also be used to skip all initial- izations by giving the name "NONE".
- See ":help initialization" within vim for more details.