1) .vimrc 파일 생성
- .vimrc파일은 홈 디렉토리에 위치해야한다.
$cd ~
$vim .vimrc
2) .vimrc 파일 값
# 문법 하이라이트
if has("syntax")
syntax on
endif
# 검색한 문자열 하이라이트
set hlsearch
# line number
set nu
# 자동 들여쓰기
set autoindent
set cindent
# tab 너비
set ts=4
set sts=4
set shiftwidth=4
set laststatus=2
# 페어 괄호 하이라이트
set showmatch
# 자동 검색, 탭, 들여쓰기
set smartcase
set smarttab
set smartindent
# 하단에 현재 커서위치의 줄/행 번호 출력
set ruler
# encoding
set fileencodings=utf8, euc-kr
'Shell > 1' 카테고리의 다른 글
/etc/sudoers | visudo (0) | 2021.09.13 |
---|---|
UFW(Uncomplicated Firewal) 설정 (0) | 2021.09.06 |
파일 디스크립터(File Descriptor) / 입출력 리다이렉션 (0) | 2021.05.24 |
make / Makefile (0) | 2021.05.18 |
touch (0) | 2020.10.15 |