Skip to content

Commit add06c7

Browse files
author
Oliver Weiler
committed
chore: Improve installation instructions
1 parent a8af6d1 commit add06c7

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
> Tired of repeatedly typing `cd ..` to walk up the directory tree? Fed up with defining aliases to jump to the first, second or nth parent directory? `up` to the rescue!
77
8-
up is a tiny shell function which lets you to jump to a parent directory by its name.
8+
up is a tiny shell function which lets you jump to a parent directory by its name.
99

1010
## :sparkles: Features
1111

@@ -15,19 +15,30 @@ up is a tiny shell function which lets you to jump to a parent directory by its
1515

1616
## :gear: Installation
1717

18-
### git + Bash
18+
### git & Bash
1919

20-
1. Clone the git repository
20+
Clone `up`'s git repository.
2121

2222
```sh
2323
git clone https://github.com/helpermethod/up ~/.up
2424
```
2525

26-
2. Add the following line to your `.bashrc` (Linux) or `.bash_profile` (macOS)
26+
Add the following line to your `.bashrc` (Linux) or `.bash_profile` (macOS) to install `up`.
2727

2828
```sh
2929
. "$HOME/.up/up"
3030
```
3131

32+
Add the following line to your `.bashrc` (Linux) or `.bash_profile` (macOS) to enable `up`'s Bash completion.
33+
34+
```sh
35+
. "$HOME/.up/completion/bash/up"
36+
```
37+
38+
### git & zsh
39+
40+
TBD
41+
3242
## Usage
3343

44+
TBD

0 commit comments

Comments
 (0)