Vimメモ : Vimをデフォルトの設定で起動する
たまにVimをデフォルトの設定で起動して動作を確認したいときがあるが、いつも方法を忘れるのでメモ。
下記オプションを設定して起動すればよい。
$ vim -u NONE -N
ヘルプによると、NONE
はvimrcファイルとプラグインを読み込まないようにする。NORC
という設定もあり、これはvimrcファイルは読み込まないがプラグインは読み込むらしい。
-u NONE
を指定すると、Vi互換モード(compatible)になり便利な機能が使えなくなるためこれを防ぐために-N
を指定してVi非互換モードにする。
-u E282 -u {vimrc} The file {vimrc} is read for initializations. Most other initializations are skipped; see initialization. This can be used to start Vim in a special mode, with special mappings and settings. A shell alias can be used to make this easy to use. For example: alias vimc vim -u ~/.c_vimrc !* Also consider using autocommands; see autocommand. When {vimrc} is equal to "NONE" (all uppercase), all initializations from files and environment variables are skipped, including reading the gvimrc file when the GUI starts. Loading plugins is also skipped. When {vimrc} is equal to "NORC" (all uppercase), this has the same effect as "NONE", but loading plugins is not skipped. Using the "-u" argument has the side effect that the 'compatible' option will be on by default. This can have unexpected effects. See 'compatible'. {not in Vi}
読み込むvimrcファイルのパスを指定して起動したければ、以下のようにパスを指定して起動する。
$ vim -u <vimrcのパス>
- 作者: Drew Neil,新丈径
- 出版社/メーカー: アスキー・メディアワークス
- 発売日: 2013/08/29
- メディア: 単行本(ソフトカバー)
- この商品を含むブログ (15件) を見る