Created
November 10, 2012 06:22
-
-
Save bageljp/4050159 to your computer and use it in GitHub Desktop.
Sublime Text 2 User Settings
This file contains 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. | |
{ | |
// カーソルのスタイル | |
"caret_style": "blink", | |
// フォント | |
//"font_face": "DejaVuSans", | |
// フォントサイズ | |
"font_size": 12.0, | |
// タブによる補完 | |
"tab_completion": true, | |
// タブのサイズ | |
"tab_size": 4, | |
// タブをスペースに変換 | |
"translate_tabs_to_spaces": true, | |
// 行間 | |
//"line_padding_top": 4, | |
// 保存時に空白を削除 | |
"trim_trailing_white_space_on_save": true, | |
// タブやスペースなどの不過視文字を表示 | |
"draw_white_space": "all", | |
// 選択行のハイライト | |
"highlight_line": true, | |
// 自動改行 | |
"word_wrap": true, | |
// 編集したファイルのタブをオレンジで表示 | |
"highlight_modified_tabs": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment