구리의 창고

vim 기본 환경 설정법 본문

Programming

vim 기본 환경 설정법

구리z 2011. 5. 12. 17:39
vi ~/.vimrc 에 원하는 환경 변수를 넣어두면 된다.

set ai cindent
set smartindent
set hlsearch nobackup
set ts=4 sw=4 sts=4 sta et
set nu
set fencs=utf8,korea
set bg=dark
set foldmethod=marker
set tags=tags;/,./tags
set pastetoggle=<Ins>
au! BufRead,BufNewFile *.phtml set syntax=php
map <F5> :!phpunit %<CR>
map <F7> :!php %<CR>
 
내가쓰는 파일.. 

'Programming' 카테고리의 다른 글

VS2008 Profiler - vsperfmd  (0) 2011.10.21
C++ - delete and null pointer  (0) 2011.09.29
CString 을 double로 변환하기  (0) 2010.05.12
class 재정의 문제  (0) 2010.05.01
vs2008 런타임 포함시키기  (0) 2010.03.26
Comments