How to install Zellij themes

pachoyan
3 min readJan 7, 2024

I recently give zellij a try as my terminal multiplexer and it is awesome. If you have not tried yet, I totally recommend it.

It is fully configurable, but at the same time you do not have to deal with having to configure it from day one as tmux as the initial setup just works perfectly fine.

One of the things you can do is creating your own themes and swithcing between them. You can use on of ones that are defined on the initial setup too.

Zellij Icon

I am a big fan of gruvbox themes, I use theme everywhere. So I will be using gruvbox. Feel free to use any them you want, or create/customise one.

Create Initial Zellij Config file

Create a file located in ~/.config/zellij/config.kdl and leave it empty for now.

mkdir -p ~/.config/zellij && touch ~/.config/zellij.kdl

Create a theme

Themes can be specified either in the config file zellij.kdl under the themes or directly in a different folder.

Create a theme directly in the config file zellij.kdl

Add the following to zellij.kdl:

themes {
gruvbox-light {
fg 124 111 100
bg 251 82 75
black 40 40 40
red 205 75 69
green 152 151 26…

--

--