From 8d82d89a81e5b8df436b02533ac786c9135b4ef2 Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Mon, 27 Oct 2014 18:37:12 +0200 Subject: [PATCH] Added support to install using bpkg. --- README.md | 8 ++++++++ package.json | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 package.json diff --git a/README.md b/README.md index e07f632a..8a607e7f 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,18 @@ Includes autocompletion, themes, aliases, custom functions, a few stolen pieces ## Install +### Using Git + 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`) 3. Edit your `~/.bash_profile` file in order to customize bash-it. +### Using bpkg + +``` +bpkg install bash-it +``` + **NOTE:** 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. diff --git a/package.json b/package.json new file mode 100644 index 00000000..c58ba17f --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "name": "bash-it", + "version": "1.0.0", + "description": "A community bash framework.", + "install": "./install.sh" +} +