为sublime text 3 手动安装Package Control, 并设置HTTP 代理

 

 

https://packagecontrol.io/installation

Manual

If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:

  1. Click the Preferences > Browse Packages… menu
  2. Browse up a folder and then into the Installed Packages/ folder
  3. Download Package Control.sublime-package and copy it into theInstalled Packages/ directory
  4. Restart Sublime Text

 

Proxy Setting:

Preferences > package settings > package control > settings-USER 中添加

 

    "http_proxy": "proxy_ip:proxy_port",
    "https_proxy": "proxy_ip:proxy_port",

 

为sublime 3安装一款主题:

找到了predawn(github)这款主题,觉得还行。Sublime Text 3 下载

下面来进行安装主题吧!

1、按下Ctrl+Shift+P调出命令面板;

2、输入install 调出 Install Package 选项并回车,然后在列表中输入predawn,然后回车安装;

3、安装好后,设置用户设置 Perferences -> Settings User,引入以下代码

    "theme": "predawn.sublime-theme",
    "color_scheme": "Packages/Predawn/predawn.tmTheme",
    "tabs_small": true,
    "findreplace_small": true,
    "sidebar_default": true,
    "sidebar_large": true,
    "gutter": true,
    "line_padding_top": 1,
    "line_padding_bottom": 1,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "word_wrap": true,
    "scroll_past_end": true

 

保存即可。

 

为sublime 3安装python 插件:

  Anaconda

  Autopep8

  SublimeREPL

  SublimeTmpl

  SideBarEnhancements: 侧边栏功能增强

  Djaneiro: 提供了对Django的支持

  SublimeGit 和 GitGutter, 前者可以帮助我们在 Sublime 中使用 Git 命令 (通过 ctrl+shift+p 或 cmd+shift+p), 后者在编辑时在 Gutter 显示 Git 差异, 十分方便.

 

posted @ 2016-05-18 15:56  xurui  阅读(1892)  评论(0编辑  收藏  举报