安装插件
按下ctrl+shift+p调出命令面板,输入install选择install package
更改插件安装位置
插件默认安装位置为:
 C:\Users\用户名\AppData\Roaming\Sublime Text 3\Packages
更改安装位置至Sublime安装目录:
- 关闭Sublime,在安装目录新建文件夹
Data; - 删除文件夹
C:\Users\用户名\AppData\Roaming\Sublime Text 3; - 再次打开Sublime即可。
 
必备插件(持续更新)
- conda & anaconda
 - sublime REPL(方便执行代码)
 
快捷键设置:
[
	{"keys": ["f1"], "caption": "SublimeREPL: shell",
					 "command": "run_existing_window_command", 
					 "args": {"id": "repl_shell",
					 "file": "config/Shell/Main.sublime-menu"}},
	{"keys": ["f2"], "caption": "SublimeREPL: Python",
					 "command": "run_existing_window_command", 
					 "args": {"id": "repl_python",
					 "file": "config/Python/Main.sublime-menu"}},
	{ "keys": ["ctrl+k"], "command": "toggle_side_bar" },
	{ "keys": ["ctrl+v"], "command": "paste" },
]
 
Conda设置
{
	"executable": "conda安装路径\\python.exe",
	"environment_directory": "conda安装路径\\envs\\"
}
 
Anaconda设置()
{
	"python_interpreter":"conda安装路径\\python.exe",
	"suppress_word_completions":true,                          
	"suppress_explicit_completions":true,
	"complete_parameters":true, 
	"auto_formatting":true,
	"auto_formatting_timeout":3,
	"enable_signatures_tooltip":true,
	"merge_signatures_and_doc":true,
	"swallow_startup_errors":true,
	"anaconda_linting":false,
}










