vimrc 文件、viminfo 文件
我对 vimrc 文件的位置有一个有点复杂的问题。我在 Windows 上使用 gvim/vim。我试图找到 vimrc 文件的位置。 “:version”显示以下数据: 用户:$HOME/_vimrc 系统:$VIM/vimrc $Home: c:\users\xyz $VIM: c:\program files(x86)\vim
我尝试搜索“$HOME/_vimrc”。我找不到它。所以,我做了 :e $MYVIMRC 并弹出了系统“vimrc”。现在我想知道为什么 vim 从系统文件夹中获取“vimrc”以及为什么没有用户“vimrc”文件。
但是,用户文件夹中的 viminfo 文件正在更新。 “$HOME/_viminfo”
谢谢
I have a little bit convoluted question about location of vimrc file. I am using gvim/vim on windows. I tried to find the location of vimrc file. ":version" showed following data:
user: $HOME/_vimrc
system: $VIM/vimrc
$Home: c:\users\xyz
$VIM: c:\program files(x86)\vim
I tried to search for "$HOME/_vimrc". I could not find it. So, I did :e $MYVIMRC and system "vimrc" poped up. Now I am wondering how come vim is taking "vimrc" from system folder and why there is no user "vimrc" file.
However, viminfo file is getting updated in the user folder. "$HOME/_viminfo"
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,不会在 $HOME 目录中创建用户 .vimrc (或 _vimrc,在您的情况下)。它用作系统 vimrc 配置的覆盖。
如果创建该文件,则可以覆盖系统 vimrc 配置文件。
The user .vimrc (or _vimrc, in your case) is not created by default in the $HOME directory. It is used as an override for the system vimrc configuration.
If you create that file, you can override the system vimrc profile.