Bootstrap

ubuntu常用的设置

1.设置vim的tab键为4个空格

set tabstop=4
set shiftwidth=4
set expandtab

tabstop设置Tab键为4个字符宽,shiftwidth设置自动缩进时的宽度也为4,expandtab表示将Tab转换为等量的空格。

2.设置git提交时自动将Tab转换为空格

git config --global core.autocrlf input
git config --global core.safecrlf true
git config --global core.tabwidth 4

;