在编写python脚本时经常遇到因空格问题而导致的语法错误,因此设置vim python文件的时候自动使用4个空格:

方法:

[root@localhost ~]# vim /root/.bash_profile

Centos vim python tab键为4个空格_profile

在最下方添加如下一行:

export EXINIT='set ts=4 sw=4'

然后重新读取一下此文件:

[root@localhost ~]# . /root/.bash_profile 


以上只是针对当前root用户,如果要针对别的用户就写在别的用户目录下,如果要针对所有有用则要编辑/etc/profile并重新读取此文件即可