SublimeText2のsettingメモ
// Settings in here override those in "Default/Preferences.sublime-settings", and
// are overridden in turn by file type specific settings.
{
//フォントサイズ
"font_size": 14,
//行間
"line_padding_top": 5,
//タブサイズ
"tab_size": 4,
//空白の削除
"trim_trailing_white_space_on_save": true,
//現在の選択行をハイライト表示(お好みで)
"highlight_line":true,
//自動改行
"word_wrap": true,
"fallback_encoding":"shift jis"
}
keymap
[
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+shift+d"], "command": "delete_line" }
]

