Added support to install using bpkg.

pull/355/head
Omer Katz 2014-10-27 18:37:12 +02:00
parent 4d2a8fe62b
commit 8d82d89a81
2 changed files with 15 additions and 0 deletions

View File

@ -8,10 +8,18 @@ Includes autocompletion, themes, aliases, custom functions, a few stolen pieces
## Install ## Install
### Using Git
1. Check a clone of this repo: `git clone https://github.com/revans/bash-it.git ~/.bash_it` 1. Check a clone of this repo: `git clone https://github.com/revans/bash-it.git ~/.bash_it`
2. Run `~/.bash_it/install.sh` (it automatically backs up your `~/.bash_profile`) 2. Run `~/.bash_it/install.sh` (it automatically backs up your `~/.bash_profile`)
3. Edit your `~/.bash_profile` file in order to customize bash-it. 3. Edit your `~/.bash_profile` file in order to customize bash-it.
### Using bpkg
```
bpkg install bash-it
```
**NOTE:** **NOTE:**
The install script will also prompt you asking if you use [Jekyll](https://github.com/mojombo/jekyll). The install script will also prompt you asking if you use [Jekyll](https://github.com/mojombo/jekyll).
This is to set up the `.jekyllconfig` file, which stores info necessary to use the Jekyll plugin. This is to set up the `.jekyllconfig` file, which stores info necessary to use the Jekyll plugin.

7
package.json 100644
View File

@ -0,0 +1,7 @@
{
"name": "bash-it",
"version": "1.0.0",
"description": "A community bash framework.",
"install": "./install.sh"
}