mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Add installing package doc file
This commit is contained in:
2
.github
2
.github
@@ -1,3 +1,3 @@
|
||||
[docs]
|
||||
title = The Guide to Atom
|
||||
manifest = intro.md, features.md, configuring-and-extending.md, styling.md, packages/intro.md, packages/adding.md, packages/markdown-preview.md, packages/wrap-guide.md
|
||||
manifest = intro.md, features.md, configuring-and-extending.md, styling.md, packages/intro.md, packages/installing.md, packages/markdown-preview.md, packages/wrap-guide.md
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
## Adding a package
|
||||
14
docs/packages/installing.md
Normal file
14
docs/packages/installing.md
Normal file
@@ -0,0 +1,14 @@
|
||||
## Installing Packages (Partially Implemented)
|
||||
|
||||
To install a package, clone it into the `~/.atom/packages` directory.
|
||||
If you want to disable a package without removing it from the packages
|
||||
directory, insert its name into `config.core.disabledPackages`:
|
||||
|
||||
config.cson:
|
||||
```coffeescript
|
||||
core:
|
||||
disabledPackages: [
|
||||
"fuzzy-finder",
|
||||
"tree-view"
|
||||
]
|
||||
```
|
||||
Reference in New Issue
Block a user