1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| { "caret\_style": "phase", "color\_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme", "font\_face": "Monaco", "font\_size": 13.0, "hightlight\_line": true, "hightlight\_modified\_tabs": true, "ignored\_packages": [ "Vintage" ], "indent\_to\_bracket": true, "draw\_centered": false, //居中显示 "line\_numbers": true, //显示行号 "gutter": true, //显示行号边栏 "fold\_buttons": true, //显示折叠按钮 "fade\_fold\_buttons": true, //始终显示折叠按钮 "rulers": [], //列显示垂直标尺,在中括号里填写数字,宽度按字符计算 "spell\_check": false, //拼写检查 "hot\_exit": true, //保留未保存内容 "line\_padding\_bottom": 1, "line\_padding\_top": 1, "scroll\_past\_end": true, //文本最下方缓冲区 "tab\_size": 2, // Tab 制表宽度 "translate\_tabs\_to\_spaces": true, //缩进和遇到 Tab 键用空格替代 "wide\_caret": true, "word\_wrap": true, "match\_tags": true, //HTML 下突出显示光标所在标签的两端。 "match\_selection": true, //全文高亮当前选中字符 "wrap\_width": 80 }
|