經過編輯vim的配置文件設置如下幾個參數就能夠永久更改vim自動縮進字符數。vim
set tabstop=4 #設置tab鍵佔用4個空格的長度。centos
set shiftwidth=4 #設置手動縮進時佔用4個空格長度。ide
set softtabstop=4 #設置tab鍵實際佔用4個空格長度。it
set expandtab #設置將tab鍵轉換爲softtabstop值的空格數。class
Linux kernel的默認值:配置
set tabstop=8vimrc
set softtabstop=8方法
set shiftwidth=8im
set noexpandtab配置文件
CentOS下vim配置文件目錄:/etc/vimrc
配置方法:
[root@centos ~]# echo -e "\nset tabstop=4\nset shiftwidth=4\nset softtabstop=4\nset expandtab" >> /etc/vimrc