About SublimeText

SublimeText(以下ST)のバージョンは2と3がありますが、現在進行中のプロジェクトは3なので、3をインストールしましょう。

エディタ。
軽いのが特徴。
プラグインで自分好みのエディタにカスタム出来るのがいい感じ。
プラグインはめちゃあるので、選択肢は無限大w

http://www.sublimetext.com/3

初期設定

Sublimetext → Preferences → Setteings-User

JSONで記述

こんな感じで

   "auto_indent": true,
    "font_size": 18,
    "font_face": "Source Code Pro Meduim",
    "highlight_line": true,
    "scroll_past_end": true,
    "scroll_speed": 1.0,
    "smart_indent": false,
    "word_wrap": false

Package Install

なにはともあれまずはパッケージインストール

そのためにパッケージコントロールをインストール

https://sublime.wbond.net/installation

View → ShowConsoleで以下をコピペ

import urllib.request,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; 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://sublime.wbond.net/' + 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)

っターン

ショートカット「cmd+shift+P」でパッケージコントロールが使えるようになる

必須パッケージ

Emmet

zen-codingの後継。 早くコードを書くためになくてはならない。

hayaku

cssを早くかける。ゆるい感じの展開でもきちんとしてくれる

Auto Filename

パスからファイル名を取得

SideBarEnhancements

サイドバーの拡張

Theme/icon

見た目大事。自分のモチベーションのために。

ColorSchemeを変更する

Sublimetext → Preferences → Color Scheme

Themeも変更

例)Flatlandの場合

"theme": "Flatland Dark.sublime-theme",

アイコンも変更

アイコンの格納場所

/Applications/Sublime Text.app/Contents/Resources/Sublime Text.icns 

参考資料

copyright © deroter