본문 바로가기
개발환경

[개발환경] vi(vim) 설치 및 vimrc 설정

by hong0 2018. 7. 29.
반응형

vi(vim) 설치

sudo apt-get install vim 

 

vimrc 설정

 

" Syntax Highlighting
" indent
set autoindent
set cindent
" line number
set nu
" table stop(Tab)
set ts=4
" auto indent
set shiftwidth=4
" status bar always on
set laststatus=2
" 검색어 highlight
set hlsearch
" scroll bar
set scrolloff=2
" 일치하는 괄호 highlight
set showmatch
if has(“syntax”)
    syntax on
endif

 

반응형

'개발환경' 카테고리의 다른 글

[개발환경] notepad++ 사용팁  (0) 2018.12.14
[개발환경] c++11 사용  (0) 2018.10.20
[개발환경] git 사용하기  (0) 2018.07.29
[개발환경] ubuntu chome 설치  (0) 2018.07.29
[개발환경] bashrc 설정  (0) 2018.07.29

댓글