vim 에서 tab 을 space 4개로 처리하게 설정하기
vim 의 탭을 공백 4 개로 설정하려면 .vimrc 에 다음 내용을 추가한다.
set smartindent set tabstop=4 set expandtab set shiftwidth=4 " >> 또는 << 키로 들여 쓰기 할때 스페이스의 갯수. 기본값 8
Ref
- http://stackoverflow.com/questions/234564/tab-key-4-spaces-and-auto-indent-after-curly-braces-in-vim
- Secrets of tabs in vim - http://tedlogan.com/techblog3.html