2022-09-08 12:56:04 +00:00
## Installation
- [Installing the main binary ](#installing-the-main-binary )
- [Using Homebrew ](#using-homebrew )
- [Using Gentoo ](#using-gentoo )
- [Using nix ](#using-nix )
- [Using cargo ](#using-cargo )
- [Using install script ](#using-install-script )
- [Downloading pre-compiled binaries ](#downloading-pre-compiled-binaries )
- [Building from source ](#building-from-source )
- [Other package managers ](#other-package-managers )
- [Installing the shell widget ](#installing-the-shell-widget )
2020-08-29 21:58:55 +00:00
### Installing the main binary
2022-02-03 14:39:36 +00:00
#### Using [Homebrew](http://brew.sh/)
2020-08-29 21:58:55 +00:00
```sh
brew install navi
```
#### Using [Gentoo](https://gentoo.org/)
Be sure to [enable ](https://wiki.gentoo.org/wiki/Ebuild_repository ) the [GURU overlay ](https://gpo.zugaina.org/Overlays/guru/app-misc/navi ).
```sh
emerge -a app-misc/navi
```
2023-04-19 22:29:40 +00:00
#### Using [pacman](https://wiki.archlinux.org/title/Pacman)
```sh
pacman -S navi
```
2020-08-29 21:58:55 +00:00
#### Using [nix](https://nixos.org/)
```sh
nix-env -iA nixpkgs.navi
```
#### Using [cargo](https://github.com/rust-lang/cargo)
```bash
2022-01-12 11:50:55 +00:00
cargo install --locked navi
2020-08-29 21:58:55 +00:00
```
2022-07-08 02:15:34 +00:00
#### Using [choco](https://community.chocolatey.org/packages/navi)
2022-05-30 12:09:37 +00:00
For Windows user, using powershell
1. Install package via choco
```bash
choco install navi
```
2. Create `$env:USERPROFILE\AppData\Roaming\navi\config.yaml` and override `shell.command` as per [config_file_example.yaml ](./config_file_example.yaml )
2022-09-08 12:56:04 +00:00
2022-05-30 12:09:37 +00:00
```
style:
tag:
color: cyan
comment:
color: grey
snippet:
color: white
shell:
command: powershell
```
Remark: Above example also adds custom colors for better readability in case you use standard blue for your Powershell
2020-08-29 21:58:55 +00:00
#### Using install script
```bash
bash < (curl -sL https://raw.githubusercontent.com/denisidoro/navi/master/scripts/install)
# (optional) to set directories:
2021-04-19 12:54:35 +00:00
# BIN_DIR=/usr/local/bin bash <(curl -sL https://raw.githubusercontent.com/denisidoro/navi/master/scripts/install)
2020-08-29 21:58:55 +00:00
```
#### Downloading pre-compiled binaries
- download the correct binary [here ](https://github.com/denisidoro/navi/releases/latest )
- extract the content to your `$PATH`
#### Building from source
```bash
git clone https://github.com/denisidoro/navi ~/.navi
cd ~/.navi
2022-09-08 12:56:04 +00:00
make install
2020-08-29 21:58:55 +00:00
# (optional) to set the install directory:
# make BIN_DIR=/usr/local/bin install
```
2022-02-14 13:51:46 +00:00
##### Compile time environment variables
**navi** supports environment variables at compile time that modify the behavior of the binary at runtime:
- `NAVI_PATH` (directory path value): If the `cheats` directory in the user's directory does not exist, **navi** uses this path (if it exists), as a fallback location to look for cheat files. Use case: system-wide installed, shared used cheatsheets folder.
- `NAVI_CONFIG` (file path value): If the `config.yaml` file in the user's directory does not exist, **navi** uses this path (if it exists), as a fallback location to look for a configuration file. Use case: system-wide installed, shared used configuration file.
2020-08-29 21:58:55 +00:00
#### Other package managers
2022-09-08 12:56:04 +00:00
You can find **navi** for more package managers by clicking on the image below:
2020-08-29 21:58:55 +00:00
[![Packaging status ](https://repology.org/badge/vertical-allrepos/navi.svg )](https://repology.org/project/navi/versions)
Feel free to be the maintainer of **navi** for any package manager you'd like!
### Installing the shell widget
2021-04-05 13:23:47 +00:00
If you want to install it, add this line to your `.bashrc` -like file:
2022-09-08 12:56:04 +00:00
2020-08-29 21:58:55 +00:00
```sh
# bash
2020-09-11 18:58:34 +00:00
eval "$(navi widget bash)"
2020-08-29 21:58:55 +00:00
# zsh
2020-09-11 18:58:34 +00:00
eval "$(navi widget zsh)"
2020-08-29 21:58:55 +00:00
# fish
navi widget fish | source
2021-09-08 21:51:44 +00:00
# elvish
eval (navi widget elvish | slurp)
2023-03-12 10:50:02 +00:00
# xonsh
# xpip install xontrib-navi # ← run in your xonsh session to install xontrib
xontrib load navi # ← add to your xonsh run control file
2020-08-29 21:58:55 +00:00
```
2023-03-12 10:50:02 +00:00
By default, `Ctrl+G` is assigned to launching **navi** (in xonsh can be customized with `$X_NAVI_KEY` , see [xontrib-navi ](https://github.com/eugenesvk/xontrib-navi ) for details).
2021-04-05 13:23:47 +00:00
There's currently no way to customize the widget behavior out-of-the-box. If you want to change the keybinding or the **navi** flags used by the widget, please:
2022-09-08 12:56:04 +00:00
2021-04-05 13:23:47 +00:00
1. run, e.g., `navi widget bash` in your terminal
2. copy the output
3. paste the output in your `.bashrc` -like file
4. edit the contents accordingly