My configuration of Sublime Text3

安装插件

参考:https://jingyan.baidu.com/article/4d58d541caeeaa9dd4e9c093.html
来源:百度经验
1.Ctrl+shift+p
2.https://packagecontrol.io/
3.Perferences->package settings->package control->install package

运行python

参考:https://www.zhihu.com/question/22904994/answer/87527103
来源:知乎,作者:man oshape

1.安装 SublimeREPLCtrl+shift+p 键入 install packages稍等片刻, 键入 SublimeREPL 安装,然后Tools->SublimeREPL->Python就可以看到效果了
2.键位绑定:由于Tools->SublimeREPL->Python这样的方式比较繁琐,可采用键位绑定——Preferences->Key Bindings-User,代码如下:

{"keys":["f2"],
"caption": "SublimeREPL: Python",
"command": "run_existing_window_command", "args":
{"id": "repl_python",
"file": "config/Python/Main.sublime-menu"}}
,{"keys":["f1"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args":
{"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"}}

主题选择

http://www.jianshu.com/p/13fedee165f1

插件推荐

ConvertToUTF8: 解决中文在sublime中乱码的问题
SyncedSideBarBg: 解决sidebar颜色和sublime背景不统一的问题
SideBarEnhancements: 侧边栏增强
SublimeAStyleFormatter:c/c++/c#/java代码格式化工具

猜你喜欢

转载自blog.csdn.net/ill__world/article/details/78495334