본문 바로가기

ETC

Ubuntu Vi or VIM 꾸미기

 

Home Directory 내 .vimrc 파일이 존재하지 않을 경우 생성하고, 해당 파일 내 아래의 내용 입력 후 저장

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" set tab width
set ts=4
" set shift width
set sw=4
" search highlight
set hlsearch
 
" line number
set nu
 
" color scheme
colo desert
 
" Syntax Highlighting
syntax on