自己的sublime设置

来源:互联网 发布:plc网络共享 编辑:程序博客网 时间:2024/06/06 04:01

装的插件有 : 

当然还要装 python 3 插件

总体设置:

{

"color_inactive_tabs": true,
"color_scheme": "Packages/User/SublimeLinter/Afterglow-monokai (SL).tmTheme",
"font_size": 14,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
"sidebar_size_13": true,
"status_bar_brighter": true,
"tabs_label_not_italic": true,
"tabs_medium": true,
"theme": "Afterglow.sublime-theme"

}

Adaconda 插件设置 :

 

{
"python_interpreter": "D:/JAVA/jdk/python3.6/python.exe",
"suppress_word_completions": true,
"suppress_explicit_completions": true,
"complete_parameters": true
}


pylinter 插件设置

{
    // Configure pylint's behavior
    "pylint_rc": "C:/Users/li/AppData/Roaming/Sublime Text 3/Packages",


    // Show different icons for errors, warnings, etc.
    "use_icons": true,


    // Automatically run Pylinter when saving a Python document
    "run_on_save": true,


    // Don't hide pylint messages when moving the cursor
    "message_stay": true
}


sublimeCodeIntel 插件设置

{
"Python": {
        "python":"D:/JAVA/jdk/python3.6/python.exe",
        "pythonExtraPaths":
            [
                "D:/JAVA/jdk/python3.6",
                 "D:/JAVA/jdk/python3.6/DLLs",
                 "D:/JAVA/jdk/python3.6/Lib",
                 "D:/JAVA/jdk/python3.6/Lib/lib-tk",
                 "D:/JAVA/jdk/python3.6/Lib/site-packages"
            ]
        }


}

插件



原创粉丝点击