sublime常用插件配置

sublime常用插件集合: https://packagecontrol.io/

很多时候我们使用sublime自带的package control安装不了插件,一直loading中,就可以使用以下手动安装的方式

宝藏插件集合: 点我=>

手动下载插件的方式

  1. 首选项 => 浏览插件目录,打开文件夹后
  2. 到插件集合网站中(上方黄色地址)找自己要下载的插件,Details中点击github地址,
  3. 在打开的目录中(git clone XXX) 克隆在此文件夹即可

常用插件集合(以及加速通道的git地址,clone快到飞起)

  • AutoFileName: https://github.com.cnpmjs.org/liamcain/AutoFileName.git
  • ChineseLocalization: https://github.com.cnpmjs.org/rexdf/ChineseLocalization.git
  • CodeFormatter: https://github.com.cnpmjs.org/akalongman/sublimetext-codeformatter.git
  • JsFormat: https://github.com.cnpmjs.org/jdavisclark/JsFormat.git
  • MarkdownPreview: https://github.com.cnpmjs.org/facelessuser/MarkdownPreview.git
  • SideBarEnhancements: https://github.com.cnpmjs.org/titoBouzout/SideBarEnhancements.git
  • terminal: https://github.com.cnpmjs.org/wbond/sublime_terminal.git
  • eslint: https://github.com.cnpmjs.org/polygonplanet/sublime-text-eslint.git
  • view-in-browser: https://github.com.cnpmjs.org/adampresley/sublime-view-in-browser.git
  • TypeScript: https://github.com.cnpmjs.org/microsoft/TypeScript-Sublime-Plugin.git

sublime中打开终端的快捷方式

1. 安装terminal(sublime_terminal)插件
2. 安装完成后在工具菜单选择“Preferences”--“Package Settings--”Terminal”--“Settings - User”
在里面输入以下配置,然后ctr+s保存
{
   "terminal": "c:\\WINDOWS\\system32\\cmd.exe",
    "parameters": ["/START","%CWD%"]
}

你可能感兴趣的:(前端)