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 会在~/.vim.
~/.vim
有没有办法告诉 Vim 搜索插件等~/.other_folder并强制它~/.vim完全忽略?
~/.other_folder
Vim 使用逗号分隔的路径 from'runtimepath'来确定在哪里查找:runtime'd 文件。
'runtimepath'
:runtime
您可以在~/.vimrc(作为第一个脚本的来源)或通过set rtp=...在 Vim 的命令行上传递命令来更改该选项(传递--cmd的命令-c仅在启动后应用)。
~/.vimrc
set rtp=...
--cmd
-c