是否可以使用名为 vimfiles 的文件夹来替换 macvim 中的 .vim?
我在家使用 MacVim,工作时在 Windows 中使用 gvim。由于我使用 git 同步我的 vim 设置,因此我希望这些设置位于名为 vimfiles 的同一文件夹中。我在 .gvimrc 中设置了运行时路径,如下所示:
set runtimepath=~/vimfiles/,$VIMRUNTIME
但是 ~/vimfiles/plugin
中的插件似乎没有被 MacVim 加载。我做错了什么吗?
是不是因为vimfiles中的子文件夹没有递归添加到runtimepath中?
I am using MacVim at home and using gvim in Windows at work. Since I use git to sync my vim settings, I want the settings to be in the same folder named vimfiles. I set runtimepath in my .gvimrc like this:
set runtimepath=~/vimfiles/,$VIMRUNTIME
but the plugins in ~/vimfiles/plugin
seems not been loaded by MacVim. Am I doing something wrong with it?
Is it because the subfolders in vimfiles were not recursively added to runtimepath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不知道为什么你担心强迫 MacOS 上的 Vim 理解 Window 的文件命名约定,而 Vim 也可以做正确的事情并在 Windows 上使用标准的 '
.
' 命名。你这是在逆流而行。这是来自 Vim wiki:
这就是我在工作时在我的 WinXP 机器上所做的,我通过复制 tarball 在我的 Mac、XP 和大约五个 Linux 主机之间进行同步。
I'm not sure why you are worried about forcing Vim on MacOS to understand Window's file-naming convention, when Vim can do the right thing and use the standard '
.
' naming on Windows too. You're going against the flow.This is from the Vim wiki:
That's what I did on my WinXP machine at work, and I synchronize between my Mac, XP and about five Linux hosts by copying a tarball across.
只需将
~/.vim
设为指向~/vimfiles
目录的符号链接,它就可以完美地工作。Just make
~/.vim
a symbolic link to your~/vimfiles
directory and it should work beautifully.根据
:h 初始化
,加载插件脚本(搜索^4\.
)是在执行特定于 GUI 的初始化(搜索^8\ .
),所以你应该将此行放入~/.vimrc
中,而不是放入~/.gvimrc
中。According to the
:h initialization
, loading plugin scripts (search for^4\.
) is done before GUI-specific initializations are performed (search for^8\.
), so you should place this line into~/.vimrc
, not into~/.gvimrc
.您是否尝试过
set runtimepath+=/path/to/vimfiles
(注意+=
)?您也可能需要对所有子文件夹执行此操作。由于您使用的是 Git,因此您可以将 Mac 上的工作目录设置为
~/.vim
以及 Windows 计算机上的任何目录,从而使文件夹名称无关。我使用 DropBox 同步我所有机器上的
~/.vim
文件夹(Mac@work、Mac@home、Ubuntu@home 和 Linode VPS)。所有autoload
、bundle
等文件夹都位于我的 DropBox 的DOTFILES/vim
子文件夹中,并符号链接到~/.vim /autoload
、~/.vim/bundle
、~/.vim/syntax
等。只需符号链接
~/Dropbox/DOTFILES/vim< /code> 到
~/.vim
也可以,但我想保留将特定于机器的东西保留在这台机器上的能力。例如,视图。我的
.vimrc
仅包含这几行:我猜,在新机器上设置它最多需要 2 或 3 分钟,并且保持整个内容最新是完全毫不费力的。
Did you try
set runtimepath+=/path/to/vimfiles
(note the+=
)? Also it's possible that you need to do that for all the subfolders.Since you are using Git, you may set the working directory to
~/.vim
on the Mac and whatever it is on the Windows machine making the name of the folder irrelevant.I use DropBox to sync my
~/.vim
folders on all my machines (Mac@work, Mac@home, Ubuntu@home and a Linode VPS somewhere). All theautoload
,bundle
, etc. folders are in aDOTFILES/vim
subfolder of my DropBox and symlinked to~/.vim/autoload
,~/.vim/bundle
,~/.vim/syntax
, etc.Simply symlinking
~/Dropbox/DOTFILES/vim
to~/.vim
would work, too, but I wanted to keep the ability to have things specific to a machine stay on this machine. Views, for example.My
.vimrc
contains only these few lines:Setting it up on a new machine would take 2 or 3 minutes max, I guess, and keeping the whole thing up to date is totally effortless.