Sublime Text 3 配置

自闭症网瘾萝莉.ら 提交于 2019-12-09 10:44:58

下载

    官方地址:http://www.sublimetext.com/3

修改默认文件文件路径

  •     正常情况:

    安装完成sublime Text 3之后别运行。直接进入安装目录新建一个叫做“Data”(注意大小写)的文件夹。

  •     特殊情况:

    如果安装完成之后已经运行过Sublime Text 3 则需要进入 %appdata/Roaming/中的 Sublime Text 3 目录删除。然后进入安装目录新建一个叫做“Data”(注意大小写)的文件夹。

安装控制台

打开Sublime Text 3 按快捷键 Ctrl + ~ 弹出命令台,在命令窗口中输入以下代码回车:

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = 
sublime.installed_packages_path(); urllib.request.install_opener( 
urllib.request.build_opener( urllib.request.ProxyHandler()) ); 
open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 
'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

安装完成之后,重启 Sublime Text 3 之后就愉快的安装插件啦( Ctrl +Shift + P)--> Ctrl + P。

常用插件

  1. ConvertToUTF8

  2. ColorPicker

  3. HTML-CSS-JS Prettify

  4. Emmet

  5. SideBarEnhancements

  6. SublimeLinter

  7. Git

  8. SVN

  9. 其他....

帅气主题

  • Preap

    地址:https://packagecontrol.io/packages/Preap

    配置:自己看咯。


配置

设置代理

    "http_proxy": "http://127.0.0.1:8080",    
    "https_proxy": "http://127.0.0.1:8080",

显示空格及制表符

"draw_white_space": "all"

个人配置1

{
  "color_scheme": "Packages/material-color-scheme/sublime/material-dark.tmTheme",
  "ignored_packages":
  [
      "Vintage"
  ],
  "theme": "preap.sublime-theme",
  "font_face": "Source Code Pro",
  "font_size": 17,
  "highlight_line": true,
  "caret_style": "smooth",
  "show_full_path": true,
  "ignored_packages":
  [
      "Vintage"
  ],
  "rulers":
  [
      80
  ],
  "bold_folder_labels": true,
  "save_on_focus_lost": true,
  "scroll_past_end": true,
  "show_encoding": true,
  "show_line_endings": true,
  "tab_size": 2,
  "translate_tabs_to_spaces": true,
  "trim_trailing_white_space_on_save": true,
  "match_tags": true,
  "auto_complete": true,
  "http_proxy": "http://localhost:8080",
  "https_proxy": "http://localhost:8080",
  "match_brackets_content": true,
  "draw_white_space": "all"
}

个人配置2

{
    "auto_complete_commit_on_tab": false,
    "auto_complete_delay": 0,
    "auto_complete_with_fields": true,
    "auto_indent": true,
    "auto_match_enabled": true,
    "bold_folder_labels": true,
    "color_scheme": "Packages/material-color-scheme-master/sublime/material-light.tmTheme",
    "curiosity_sidebar_font_large": true,
    "curiosity_sidebar_font_normal": true,
    "curiosity_sidebar_font_small": true,
    "curiosity_sidebar_font_xlarge": true,
    "curiosity_sidebar_large": true,
    "curiosity_sidebar_normal": true,
    "curiosity_sidebar_small": true,
    "curiosity_sidebar_xlarge": true,
    "curiosity_sidebar_xsmall": true,
    "default_encoding": "UTF-8",
    "dpi_scale": 1.0,
    "draw_white_space": "all",
    "fade_fold_buttons": false,
    "fold_buttons": true,
    "font_face": "Source Code Pro",
    "font_size": 14,
    "highlight_line": true,
    "highlight_modified_tabs": true,
    "hot_exit": false,
    "http_proxy": "http://127.0.0.1:1080",
    "https_proxy": "http://127.0.0.1:1080",
    "ignored_packages":
    [
        "Vintage"
    ],
    "match_brackets_angle": true,
    "match_brackets_content": true,
    "match_tags": true,
    "remember_open_files": false,
    "smart_indent": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "update_check": false,
    "word_wrap": "false"
}





版权声明:本文为博主原创文章,未经博主允许不得转载。

by: ThoughtSong

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!