Programming/Tool

[VI/VIM] 개발 환경 설정

MB Brad KWON 2013. 6. 18. 15:17

 /root/.vimrc를 편집해서 개발하기 편한 개인 환경을 설정하자


set tabstop=2

set shiftwidth=2

set expandtab

set softtapstop=2

set visualbell

set nobackup

set cindent

set autoindent

set smartindent

set enc=euc-kr

set incsearch

syntax on

filetype on

set background=dark

colorscheme evening

set backspace=eo1, start, indent

set history=1000

set ignorecase

set showmatch

set complete

'Programming > Tool' 카테고리의 다른 글

[cscope] cscope 사용법  (0) 2013.06.18
[ctags] ctags 사용법  (0) 2013.06.18
[VI] VI/VIM 명령어 정리  (0) 2013.04.18
[Eclipse] 이클립스 단축키  (0) 2012.09.29
[tortoiseSVN] Windows에서 tortoiseSVN을 이용한 SVN 사용하기  (0) 2012.09.27