# Alacritty
**Config =** `alacritty.toml`
- Found in: `$HOME/./config/alacritty/alacritty.toml`
- OR: `$HOME/.alacritty.toml`
```toml
import = ["/home/sparks/.config/alacritty/themes/themes/ayu_dark.toml"]
live_config_reload = true
window.opacity = 1.0
[font]
size = 12
[font.normal]
family = "Jetbrains Mono Font"
style = "Bold"
```
# Starship
## For Nushell
After installing, add the following to the end of your **Nushell** `env` file
- Find it by running `$nu.env-path` in **Nushell**
```sh
mkdir ~./cache/starship
starship init nu | save -f ~/.cache/starship.init.nu
```
Add this to the end of your Nushell configuration file
- Find it by running `$nu.config-path`
```sh
use ~/.cache/starship/init.nu
```