Created
August 18, 2013 15:57
-
-
Save bitkevin/6262356 to your computer and use it in GitHub Desktop.
configration of sublime.json
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
{ | |
// Columns in which to display vertical rulers | |
//列显示垂直标尺,在中括号里填入数字,宽度按字符计算 | |
"rulers": [80], | |
// Set to true to insert spaces when tab is pressed | |
// 设为true时,缩进和遇到Tab键时使用空格替代 | |
"translate_tabs_to_spaces": true, | |
// The number of spaces a tab is considered equal to | |
// Tab键制表符宽度 | |
"tab_size": 2, | |
// Set to false to disable underlining the brackets surrounding the caret | |
// 是否特殊显示当前光标所在的括号、代码头尾闭合标记 | |
"match_brackets": true, | |
// 当文件到末尾时还能继续滚动 | |
"scroll_past_end": true, | |
"font_face": "monaco", | |
"font_size": 13, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment