怎么用sublime text 3搭建python 的ide

2025-04-06 22:48:55
推荐回答(1个)
回答1:

供参考:http://www.cnblogs.com/waising/articles/3466120.html


我个人使用的插件:JEDI、AotuPEP8,还有一个主题Theme-Soda

Settings-User个人配置(字体需自己安装)

{
    "dpi_scale": 1.0,
    "draw_white_space": "selection",
    "fallback_encoding": "UTF-8",
    "font_face": "Monaco",
    "font_size": 11,
    "ignored_packages":
    [
        "Vintageous",
        "Vintage"
    ],
    "indent_guide_options":
    [
        "draw_active",
        "draw_normal"
    ],
    "line_padding_bottom": 1,
    "line_padding_top": 1,
    "rulers":
    [
        90
    ],
    "show_encoding": true,
    "tab_size": 4,
    "theme": "Soda Dark 3.sublime-theme",
    "translate_tabs_to_spaces": true,
    "update_check": false
}