sublime text3常用配置

1.配置tab操作为4个空格

Preferences->Settings-User->

在打开的文件中加入:

{
    "tab_size":4,
    "translate_tabs_to_spaces":true
}

 2.配置每行最长80个字符

{
    "word_wrap": "auto",
    "wrap_width": 80
}
原文地址:https://www.cnblogs.com/fanyegong/p/5272250.html