본문 바로가기

COMPUTER SCIENCE/LINUX

[Linux] vim에서 tab indentation을 space 4개로 변경

[임시 설정 - vim 켠 상태에서]
:set smartindent
:set tabstop=4
:set expandtab
:set shiftwidth=4

[영구 설정 - ~/.vimrc에 추가]
set smartindent
set tabstop=4
set expandtab
set shiftwidth=4

 

참고자료 : https://www.lesstif.com/system-admin/vim-tab-space-4-18220149.html

반응형

'COMPUTER SCIENCE > LINUX' 카테고리의 다른 글

[Linux] wget certificate 오류 해결  (0) 2021.10.14
[Linux] CGI httpd.conf 설정  (0) 2021.01.29
[Linux] vim 기본 설정  (0) 2020.10.10
[Linux] CentOS에서 pip 설치하기  (0) 2020.10.08
[Linux] 맥 터미널에서 alias 추가  (0) 2020.10.04