vim에서 tab을 space 4개로 바꾸기

less than 1 minute read

.vimrc에 다음 내용을 추가한다.

1
2
3
4
set smartindent
set tabstop=4
set expandtab
set shiftwidth=4

기존에 tab으로 작업했던 파일을 space로 바꾸려면

vi에서 retab 명령을 실행해준다.
:retab

Categories:

Updated: