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>
내가쓰는 파일..