Atom 插件安装

主要介绍: Atom 的插件安装的方法, 由于自己直接连接网络安装不好, 所以就直接在本地安装; 系统 Ubuntu 16.04

[1] 本机需要安装有 git, npm 

[2] 在 github: https://github.com/ 上找到自己的需要下载的插件在所用 npm 安装;

eg: 我安装了, emmet, autoclose, open-in-browser 這三个插件, 插件在本地的位置: /home/*home_dir*/.atom/packages

emmet:

  (1) git 地址:  https://github.com/emmetio/emmet-atom.git  

  (2) 下载完成后,

    cd emmet-atom;    npm install;   就可以了

auto-close:  https://github.com/awaw00/autoclose.git 

open-in-browser: https://github.com/aki77/atom-open-html-in-browser.git    这个使用的时候需要点击文件前面的图标

参考博客:  https://www.jianshu.com/p/d4b234809cac

    atom 插件官网: https://atom.io/packages  

               常见使用插件: https://blog.csdn.net/zula1994/article/details/76152814

原文地址:https://www.cnblogs.com/pieguan/p/10178054.html