Simple
패키지 컨트롤 설치
단축키 ctrl+` 또는 . 으로 창을 연다음 menu
이래 부분을 붙혀 넣는다.
Sublime Text 3
import urllib.request,os,hashlib; h = 'eb2297e1a458f27d836c04bb0cbaf282' + 'd0e7a3098092775ccb37ca9d6b2e4b7d'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)
Sublime
Text 2
import urllib2,os,hashlib; h =
'7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; pf =
'Package Control.sublime-package'; ipp = sublime.installed_packages_path();
os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener(
urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen(
'http://sublime.wbond.net/' + pf.replace(' ', '%20')).read(); dh =
hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by)
if dh == h else None; print('Error validating download (got %s instead of %s),
please try manual install' % (dh, h) if dh != h else 'Please restart Sublime
Text to finish installation')
그 후
ctrl + shift + p > Package Control : Install Package > Enter
와 같이 치고 나면
sublime에서 사용할 수 있는 Add on 리스트들이 나타 난다.
원하는 부분을 찾아서 선택을 하면 자동으로 설치 하게 된다. (인터넷 연결)
필자가 기본적으로 설치하는 항목은 다음과 같습니다.
1. BracketHighlighter
2. ConvertToUTF8
3. DocBlockr
4. Git
5. Nodejs
6. SFTP
7. SublimeCodeIntel
8. SublimeLinter
또한
개별 설정은 아래와 같이 사용하고 있습니다.
{
"color_scheme": "Packages/User/Monokai (SL).tmTheme",
"font_face": "NanumGothicCoding",
"font_size": 14,
"ignored_packages":
[
"Vintage"
]
}
0 댓글