当前位置 : 主页 > 编程语言 > 其它开发 >

分享我的Sublime配置和包(收藏)

来源:互联网 收集:自由互联 发布时间:2021-08-13
Sublime 配置和包分享,From: https://github.com/xiaobeicn/developer-tools 配置文件: # 包括:打开新窗口关闭、unix结束标记、禁止更新、100字符换行、字体、缩进、高亮、编码{ open_files_in_new_wind

Sublime 配置和包分享,From: https://github.com/xiaobeicn/developer-tools


配置文件:

# 包括:打开新窗口关闭、unix结束标记、禁止更新、100字符换行、字体、缩进、高亮、编码

{
    "open_files_in_new_window": false,
    "default_line_ending": "unix",
    "update_check": false,
    "word_wrap": "true",
    "wrap_width": 100,
    "font_size": 12,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "highlight_line": true, 
    "highlight_modified_tabs": true,    
    "show_encoding": true
}

安装的包:

  • ColorPicker //颜色选择器
  • DocBlockr //注释
  • Git //版本控制
  • GitGutter //GitGutter 更好的帮助开发者查看文件之前的改动和差异,提升开发效率
  • jQuery //提示
  • Markdown Preview //预览
  • Theme - Spacegray //模版和配色方案
  • Ctags //代码搜索
  • Emmet //html+css快速编写
  • AllAutocomplete //搜索全部打开的标签页
  • AutoFileName //自动补全文件路径
  • SideBarEnhancements //侧边栏添加很多额外的功能
  • SublimeREPL //允许你在 Sublime Texxt 中运行各种语言
  • Blade Snippets //提供 Blade 模板自动补全
  • Laravel 4 Blade Highlighter //提供 Blade 关键字高亮
  • SublimeLinter + SublimeLinter-php : //PHP错误提示
  • phpfmt //格式化PHP代码,对齐代码
  • GitSavvy //Full git and GitHub integration with Sublime Text 3
  • Terminal //Launch terminals from the current file or the root project folder
  • Alignment // 代码对齐

更多sublime技术文章,请访问sublime教程栏目!

以上就是分享我的Sublime配置和包(收藏)的详细内容,更多请关注自由互联其它相关文章!

网友评论