我在使用mingw32的Windows上使用VIM。有没有办法更改默认标签大小?
由于
答案 0 :(得分:3)
在MS Windows上,没有mingw32,要编辑的资源文件称为“_vimrc
”,可以在Vim的安装目录中找到,通常位于Program Files下。
例如
c:\Program Files (x86)\Vim
答案 1 :(得分:2)
将此添加到您的.vimrc
(如果您需要,例如,3个标签尺寸):
set tabstop=3
set shiftwidth=3
set expandtab "for converting tabs to spaces
set noexpandtab "for not converting tabs to spaces