Created
November 22, 2012 10:45
-
-
Save tocky/4130517 to your computer and use it in GitHub Desktop.
Sublime Text 2 Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Settings in here override those in "Default/Preferences.sublime-settings", and | |
// are overridden in turn by file type specific settings. | |
{ | |
// ================================================== | |
// 基本設定 | |
// ================================================== | |
// フォント | |
"font_face": "Monaco", | |
// フォントサイズ | |
"font_size": 13, | |
// 保存時に行末のスペースを除去する | |
"trim_trailing_white_space_on_save": true, | |
// タブやスペースなどの不可視文字を表示 | |
"draw_white_space": "all", | |
// カレント行をハイライト | |
"highlight_line": true, | |
// タブサイズ | |
"tab_size": 4, | |
// 行間 | |
"line_padding_top": 0, | |
// 左右のマージン | |
"margin": 0, | |
// ================================================== | |
// テーマ設定 | |
// 使用テーマ: Phoenix Dark (https://github.com/netatoo/phoenix-theme) | |
// ================================================== | |
"theme": "Phoenix Dark.sublime-theme", | |
// 全体的に適用する色 | |
"phoenix_color_red": true, | |
// カレントタブの文字ハイライト | |
"phoenix_highlight_current_tab": false, | |
// カレントタブのスタイル | |
"phoenix_eighties": true, | |
// カレントタブのスタイル | |
"phoenix_solid_current_tab": true, | |
// 編集中のタブ下部にバーを表示 | |
"phoenix_dirty_bottom_bar": true, | |
// 編集中のタブ下部のバー色 | |
"phoenix_dirty_bottom_bar_red": true, | |
// ツリー表示の行間高さ | |
"phoenix_sidebar_tree_medium": true, | |
// ツリーのフォルダ展開時に色付け | |
"phoenix_color_expanded_folder": true, | |
// ================================================== | |
// その他設定 | |
// ================================================== | |
// 無視するパッケージ | |
"ignored_packages": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment