README.md

February 27, 2026 · View on GitHub

Simpalt

Github MIT licensed

A blazing fast ZSH and NuShell theme written in Rust with focus on information density, screen real estate, and beauty.

Demo

Demo

How to use it

Software Requirement

ZSH or NuShell

Suggested setup

Using NixOS, add the following to your system flake:

{
  inputs = {
    simpalt.url = "github:m-lima/simpalt";
  };

  outputs =
    {
      ...
    }:
    {
      [...]
      home-manager =
        let
          simpalt = {
            pkg = inputs.simpalt.packages.${pkgs.stdenv.hostPlatform.system}.default;
            zsh = inputs.simpalt.lib.zsh;
          };
        in:
        {
          home.packages = [ simpalt.pkg ];
          programs.zsh.initContent = simpalt.zsh {
            symbol = "₵";
            toggleBinding = "^T";
          };
        };
    };
}

Loading directly