0
点赞
收藏
分享

微信扫一扫

Sublime初始配置

乱世小白 2022-04-05 阅读 81
sublime text

安装插件

按下ctrl+shift+p调出命令面板,输入install选择install package

更改插件安装位置

插件默认安装位置为:
C:\Users\用户名\AppData\Roaming\Sublime Text 3\Packages

更改安装位置至Sublime安装目录:

  1. 关闭Sublime,在安装目录新建文件夹Data
  2. 删除文件夹C:\Users\用户名\AppData\Roaming\Sublime Text 3
  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,
}
举报

相关推荐

0 条评论