Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デフォルトでは、Vim はプラグインやその他のものを .xml で探します~/.vim。
~/.vim
プラグインなどを検索して完全~/.other_folderに無視するように Vim に指示する方法はありますか?~/.vim
~/.other_folder
Vim はカンマ区切りのパスを使用して、 'd ファイル'runtimepath'を探す場所を決定します。:runtime
'runtimepath'
:runtime
~/.vimrcそのオプションは、 (最初のスクリプトとして提供されます) で、またはset rtp=...Vim のコマンドラインでコマンドを渡すことで変更できます(で--cmd渡されたコマンドは-c、起動後にのみ適用されます)。
~/.vimrc
set rtp=...
--cmd
-c