2

我正在使用 mingw32 在 Windows 上使用 VIM。有没有办法更改默认选项卡大小?

谢谢

4

2 回答 2

4

在没有 mingw32 的 MS Windows 上,要编辑的资源文件称为 " _vimrc",可以在 Vim 的安装目录中找到,通常在 Program Files 下。

例如

c:\Program Files (x86)\Vim

于 2014-01-08T15:16:22.850 回答
3

将此添加到您的.vimrc(如果需要,例如 3 标签大小):

set tabstop=3
set shiftwidth=3
set expandtab "for converting tabs to spaces
set noexpandtab "for not converting tabs to spaces
于 2012-05-20T09:44:53.500 回答