Skip to content

Commit 86df970

Browse files
committed
Add terminal theme TupeloHoney, and update README.
1 parent bae42d8 commit 86df970

File tree

2 files changed

+658
-26
lines changed

2 files changed

+658
-26
lines changed

README.md

+14-26
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
1-
# Beautify Your MacOS or OSX Terminal
1+
# Beautify Git in Your MacOS or OSX Terminal
22

33
This set of config files can help transform your command line from something ugly and painful to something delightful and easy-to-read.
44

55
![](screenshot.png)
66

7-
## Installation
7+
## Setup
8+
First things first, you'll want to install a nice color theme for your terminal. The one in the screenshot above is called TupeloHoney, and you'll find it included in this repo. I based it off of the most excellent [Flat terminal theme](https://github.com/ahmetsulek/flat-terminal) from [ahmetsulek](https://github.com/ahmetsulek).
89

9-
OS X & Linux:
10+
You can load the theme by opening up your mac terminal and navigating to **Preferences > Profiles > Import**.
1011

11-
```sh
12-
npm install my-crazy-module --save
13-
```
12+
With that out of the way, we can now log into the bash terminal and set our git configuration to display colors. Here's my setup from the above screenshot.
1413

15-
Windows:
14+
MacOS & OS X:
1615

1716
```sh
18-
edit autoexec.bat
17+
git config --global color.ui true
18+
git config --global color.status.changed "blue normal"
19+
git config --global color.status.untracked "red normal"
20+
git config --global color.status.added "magenta normal"
21+
git config --global color.status.updated "green normal"
22+
git config --global color.status.branch "yellow normal bold"
23+
git config --global color.status.header "white normal bold"
1924
```
2025

2126
## Usage example
@@ -33,16 +38,6 @@ npm test
3338

3439
## Release History
3540

36-
* 0.2.1
37-
* CHANGE: Update docs (module code remains unchanged)
38-
* 0.2.0
39-
* CHANGE: Remove `setDefaultXYZ()`
40-
* ADD: Add `init()`
41-
* 0.1.1
42-
* FIX: Crash when calling `baz()` (Thanks @GenerousContributorName!)
43-
* 0.1.0
44-
* The first proper release
45-
* CHANGE: Rename `foo()` to `bar()`
4641
* 0.0.1
4742
* Work in progress
4843

@@ -58,11 +53,4 @@ npm test
5853
### License
5954
Distributed under the MIT license. See ``LICENSE`` for more information.
6055

61-
# Thanks for stopping by!
62-
63-
64-
[npm-image]: https://img.shields.io/npm/v/datadog-metrics.svg?style=flat-square
65-
[npm-url]: https://npmjs.org/package/datadog-metrics
66-
[npm-downloads]: https://img.shields.io/npm/dm/datadog-metrics.svg?style=flat-square
67-
[travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square
68-
[travis-url]: https://travis-ci.org/dbader/node-datadog-metrics
56+
# Thanks for stopping by!

0 commit comments

Comments
 (0)