Jun's Blog

Output, activities, memo and etc.

Set up Sublime Text 2

http://www.sublimetext.com/
http://mnemoniqs.com/web/sublimetext2/
http://hondou.homedns.org/pukiwiki/index.php?Mac%20Sublime%20Text%202%20%A4%C8%20Ricty%20Font
http://ytsuda.hateblo.jp/entry/2012/12/05/170506

必要なら→全角スペース表示(FullPitchWhiteSpaceHighlight)
Ricty Font 入れるなら全角スペースが可視化できるので、このプラグインを入れる必要はない。
http://a.good.cx/sublime/

追加でインストールした Package: FileDiffs, HTML5, FullPitchWhiteSpaceHighlight, VintageEX, Vintage Surround

User Setting

{
	"font_face": "Ricty Regular",
	"font_size": 14,
	"tab_size": 4,
	"highlight_line": true,
	"draw_white_space": "all",
	"line_padding_top": 5,
	"rulers": [ 78 ]
}
{
	"draw_white_space": "all",
	"font_face": "Ricty Regular",
	"font_size": 14,
	"highlight_line": true,
	"ignored_packages":
	[
		"FullPitchWhiteSpaceHighlight"
	],
	"line_padding_top": 5,
	"rulers":
	[
		80
	],
	"tab_size": 4,
	"vintage_start_in_command_mode": true,
	"word_wrap": true
}

User Key Map

[
    { "keys": ["super+r"], "command": "clone_file" },
    { "keys": ["ctrl+tab"], "command": "prev_view" },
    { "keys": ["ctrl+tab"], "command": "next_view" },
    { "keys": ["super+right"], "command": "next_view_in_stack" },
    { "keys": ["super+left"], "command": "prev_view_in_stack" },
    { "keys": ["g", "t"], "command": "next_view",
        "context":
        [
            { "key": "setting.is_widget", "operand": false },
            { "key": "setting.command_mode" }
        ]
    },
    { "keys": ["g", "T"], "command": "prev_view",
        "context":
        [
            { "key": "setting.is_widget", "operand": false },
            { "key": "setting.command_mode" }
        ]
    }
]