K8s 시험을 위한 Vim 설정 방법

Jmnote (토론 | 기여)님의 2024년 6월 6일 (목) 10:22 판 (새 문서: ==개요== ;How to setup Vim for the K8s exams ;K8s 시험을 위해 Vim을 설정하는 방법 <syntaxhighlight lang='console'> vim ~/.vimrc </syntaxhighlight> <syntaxhighlight lang...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

How to setup Vim for the K8s exams
K8s 시험을 위해 Vim을 설정하는 방법
Console
Copy
vim ~/.vimrc
text
Copy
set expandtab
set tabstop=2
set shiftwidth=2
  • expandtab 탭 입력시 스페이스 사용
  • tabstop: 탭에 사용할 스페이스 수
  • shiftwidth: 들여쓰기에 사용할 스페이스 수

2 참고