# Make Bash prettier on NixOS

Using [`ble.sh`](http://ble.sh) and Starship.

Bash by itself is pretty basic. Syntax highlighting, auto-suggestion and history matching are pretty helpful features in any shell. Users might be worried about the bloat these features bring and add delay to the startup of the shell.

I've been using these features for quite a while and have yet to see a performance hit. So it should be safe to assume you won't be having any of these problems either.

The reason why I am configuring bash instead of using other shells that have a better support these features is `nix develop` and `nix shell` expect bash and most of its functionalities are built around bash. So I do not recommend using a different shell for these.

## [`ble.sh`](http://ble.sh)

[ble.sh](http://ble.sh) or *Bash Line Editor* is a command line editor written in pure Bash and replaces GNU Readline. Although it is written in Bash, it relies on POSIX `stty` to set up TTY states before and after the execution of user commands.

Installing [`ble.sh`](http://ble.sh) on NixOS is pretty straight forward as documented in the git repo.

```bash
# Spawn a development shell to bring in dependencies
nix develop nixpkgs#bash
# Bring build dependencies to path
nix shell nixpkgs#git nixpkgs#gnumake

# Try without installing
git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git
make -C ble.sh
source ble.sh/out/ble.sh

# Install to ~/.bashrc
git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git
make -C ble.sh install PREFIX=~/.local
echo 'source ~/.local/share/blesh/ble.sh' >> ~/.bashrc
```

Now add the following line to `home.nix`:

```nix
programs.bash = {
    bashrcExtra = ''
        . ~/.bashrc
    '';
};
```

Switch to the new configuration:

```bash
home-manager switch
```

Now the changes should persist across sessions.

[`ble.sh`](http://ble.sh) brings syntax highlighting, auto-completion, auto-suggestion, menu-complete and more.

## Starship

[Starship](https://starship.rs) customizes shell prompt. The defaults are surprisingly sane for what it does. It is fast and does not get in the way. The prompt changes based on your directory. You can install it by adding it to `home.nix`:

```nix
home.packages = with pkgs; [ starship ];
```

Append the line to `~/.bashrc`

```bash
eval "$(starship init bash)"
```

Personally, I never felt the need to change it but you can choose from the [many existing configurations](https://starship.rs/config/). Oh, and have [Nerd Font](https://www.nerdfonts.com/) enabled.

![Screenshot of shell featuring Starship and ble.sh](https://blog.adityakumar.xyz/img/bash-nixos.png align="left")
