Skip to content

Instantly share code, notes, and snippets.

View rkJun's full-sized avatar

Juntai Park rkJun

View GitHub Profile
@rkJun
rkJun / Back_to_the_Mac_20120805.css
Last active October 9, 2015 10:37
Safari, Google Chrome Font Style Sheet for Mac
//# Link (출처) : http://macnews.tistory.com/162
//# Safari/Google Chrome Korean Font Style Sheet for OS X Mountain Lion
//#
//# Google Chrome : ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css
@font-face {
font-family: AppleGothic;
src: local("Apple SD Gothic Neo"),
local("Nanum Gothic");
}
@rkJun
rkJun / .vimrc
Created July 8, 2011 13:48
gVim Configuration
"gVim 용 설정. macVim, vim 에서는 일부 제거할 것.
set number
set guifont=나눔고딕코딩:h10
set fileencodings=unicode,utf-8,cp949,euc-kr,koi8-r,sjis,ucs-bom,iso10646
source $VIMRUNTIME/colors/torte.vim
set co=120
set lines=45
set ts=4 "set tabstop=4 " Tab을 눌렀을 때 8칸 대신 4칸 이동하도록 한다.
set sw=4 "set shiftwidth=4 " 자동 들여쓰기를 할때 4칸 들여쓰도록 한다.
@rkJun
rkJun / .profile
Last active September 26, 2015 08:48
Mac profile
#rkJun's MacBook Pro with Retina display .profile
export EDITOR=vim
#export PATH=$PATH:
# GREP coloring
export GREP_OPTIONS='--color=auto'
export GREP='1;33'