我最近在Windows中安装了vim文本编辑器。我一直在寻找有关vimrc文件在Google上位置的任何解释,但找不到任何有意义的解释。在哪里可以找到vimrc文件?
答案 0 :(得分:2)
来自:h vimrc
:
Places for your personal initializations:
Unix $HOME/.vimrc or $HOME/.vim/vimrc
MS-Windows $HOME/_vimrc, $HOME/vimfiles/vimrc
or $VIM/_vimrc
Amiga s:.vimrc, home:.vimrc, home:vimfiles:vimrc
or $VIM/.vimrc
The files are searched in the order specified above and only the first
one that is found is read.
RECOMMENDATION: Put all your Vim configuration stuff in the
$HOME/.vim/ directory ($HOME/vimfiles/ for MS-Windows). That makes it
easy to copy it to another system.
但是,Vim不会自动为您创建一个vimrc
文件,您需要自己创建它。示例:
:!mkdir $HOME/vimfiles
:e $HOME/vimfiles/vimrc
答案 1 :(得分:0)
这取决于您如何在计算机上获得vim
。
我有一个通用的答案-在您用户的主目录中创建一个vimrc
文件,这也可能是“正确”的答案。