自己的sublime设置
Posted java-北京-菜鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己的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设置为打开指定文件格式的默认方式,而不是如图所示的这种出来对话框让自己再选择的方式?
Python第二天:sublime text 3 的运行快捷键设置为F5