https://github.com/itgoyo/atom
https://github.com/itgoyo/atom
atom atom-package atom-plugin
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itgoyo/atom
- Owner: itgoyo
- Created: 2017-02-27T03:31:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-14T18:04:58.000Z (about 9 years ago)
- Last Synced: 2025-02-25T19:34:30.976Z (about 1 year ago)
- Topics: atom, atom-package, atom-plugin
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atom
- 完成Atom文本编辑器的安装
[1] 下载安装[Atom](https://atom.io/)
[2] 下载[Node.js](https://nodejs.org/en/)
[3] 配置环境变量
打开安装Atom文件夹 复制安装路径

在环境变量-系统变量-path中新增
C:\Users\admin\AppData\Local\atom\app-1.14.3\resources\app\apm\bin
C:\Users\admin\AppData\Local\atom\bin(重点是这个一定要配对)
D:\Program Files\nodejs
如下图所示:

- 添加git-plus\activate-power-mode插件
由于使用lantern翻墙还有修改了host文件都不能成功的install 插件,所以这里我安装插件的方式是采用了离线的方式
[Atom插件合集](https://atom.io/packages)
从里边下载好了插件之后解压缩复制到C:\Users\admin\.atom\packages
然后使用命令行(cmd)
1.在搜索里边键入powershell

2.
[1] cd 到下载的插件包文件夹里
[2] 然后键入apm install
[3] 当出现了done的字样之后
[4] 再键入apm install xxx(插件名)
出现done之后代码成功安装插件

好了下面就是见识狂拽炫酷输入效果的时刻

git-plus 插件不能成功push
在stackoverflow找到答案,你可以在在自己的.git文件夹里边的config修改
https://github.com/USER/REPO.git
改成
git@github.com:USER/REPO.git
以下是stackoverflow原文
Well I had the same problem - what annoys me to no end is that I don't have a clue why (edit: bug). I was pushing with https. Manually editing the config did not work for me (or doing a chkdsk as suggested in another answer). I ended up pushing with ssh - as in, replace:
https://github.com/USER/REPO.git
with
git@github.com:USER/REPO.git