装的插件有 : 自己的sublime设置

当然还要装 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"
            ]
        }


}

插件

自己的sublime设置

自己的sublime设置

相关文章:

  • 2021-12-25
  • 2022-12-23
  • 2021-05-05
  • 2021-06-14
  • 2021-09-07
  • 2022-01-03
  • 2021-05-30
  • 2021-11-19
猜你喜欢
  • 2021-11-16
  • 2021-05-21
  • 2021-05-23
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案