Add installing package doc file

This commit is contained in:
Kevin Sawicki
2013-01-09 10:33:57 -08:00
parent 43ecc876be
commit 7a5d8da201
3 changed files with 15 additions and 2 deletions

View File

@@ -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

View File

@@ -1 +0,0 @@
## Adding a package

View 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"
]
```