Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FreeBSD and macOS install instructions #27

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Logging in for @user1:example.com...

### Per-Profile Configuration

Several of the sectioncs that you can place under the global configuration can
Several of the sections that you can place under the global configuration can
also be placed within profile configurations to achieve per-profile values:

- `dirs`
Expand Down Expand Up @@ -210,7 +210,7 @@ members = ["server", "~localpart"]
| `"recent"` | Sort rooms with recent messages towards the top. |
| `"unread"` | Sort rooms with unread messages towards the top. |
| `"name"` | Sort rooms alphabetically by their room name. |
| `"alias"` | Sort rooms alphabetically by thei canonical alias (e.g., `#iamb-users:0x.badd.cafe`) |
| `"alias"` | Sort rooms alphabetically by their canonical alias (e.g., `#iamb-users:0x.badd.cafe`) |
| `"id"` | Sort rooms alphabetically by their unique room identifier (e.g., `!nQTgloqKBScxNjsQzR:0x.badd.cafe`). |

#### User Fields
Expand Down Expand Up @@ -276,7 +276,7 @@ split = [
You can add custom keybindings in `macros` subsections, which describes the Vim
modes to map the commands to, the input keys you want to map, and the keys that
you want it to then run. These keybindings behave like macros when a count is
given, and will repeat the target key sequnce *n* times.
given, and will repeat the target key sequence *n* times.

For example, you could use the following to map `jj` to `<Esc>` in Insert mode
and `V` to `<C-W>m` in Normal and Visual mode:
Expand Down
21 changes: 20 additions & 1 deletion src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ using `paru`:
paru iamb-git
```

### FreeBSD

On FreeBSD a package is available from the official repositories. To install it
simply run:

```
pkg install iamb
```

### macOS

On macOS a [package][homebrew] is available in Homebrew's repository. To
install it simply run:

```
brew install iamb
```

### NetBSD / pkgsrc

On NetBSD (or any other system [with pkgsrc available][pkgsrc]), you can
Expand Down Expand Up @@ -87,7 +105,8 @@ iamb 0.0.9 (82645c8)
[crates.io]: https://crates.io/crates/iamb
[enabled flakes]: https://nixos.wiki/wiki/Flakes#Enable_flakes
[GitHub]: https://github.com/ulyssa/iamb
[installing-snap]: https://snapcraft.io/docs/installing-snapd
[homebrew]: https://formulae.brew.sh/formula/iamb#default
[install-snap]: https://snapcraft.io/docs/installing-snapd
[openSUSE]: https://build.opensuse.org/package/show/home%3Asmolsheep/iamb
[pkgsrc]: https://pkgsrc.smartos.org/
[Releases]: https://github.com/ulyssa/iamb/releases/
Expand Down
Loading