본문으로 바로가기

서브라임 텍스트 설정

category Util 2016. 9. 13. 10:24

서브라임 텍스트 에서 사용하는 컬러 스키마

enlightened 컬러테마가 개인적으로 가장 맘에 듭니다.


서브라임 텍스트 사용자 기본 설정

아래의 텍스트 설정항목을 복사하신 다음 Preferencd->Settings - User를 선택하고 붙여넣기 하고 저장하면 설정완료 ^^


설정항목: 

기본 폰트 나눔고딕

현재라인 색상 설정 활성화

enlightended 컬러설정


{

"caret_style": "smooth",

"color_scheme": "Packages/Enlightened Color Scheme/enlightened.tmTheme",

"fade_fold_buttons": false,

"font_face": "NanumGothicCoding",

"font_size": 12,

"tab_size": 4,

"highlight_line": true,

"ignored_packages":

[

"Vintage"

],

"indent_guide_options":

[

"draw_normal",

"draw_active"

]

}

스니펫

tline 스니펫

서브라임 텍스트에 많은 내용을 기록하는 저는 가끔 하나의 페이지에 내용을 적으면서 줄을 이용하여 내용을 구분할 필요가 있습니다.

tline이라고 적은 후 <tab>하면 라인이 자동으로 쭉 들어가죠 ^^


<snippet>

<content><![CDATA[

----------------------------------------------------------------------------------------------------

${1:새로운 내용을 입력하세요}

]]></content>

<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->

<tabTrigger>tline</tabTrigger>

<!-- Optional: Set a scope to limit where the snippet will trigger -->

<!-- <scope>source.python</scope> -->


</snippet>