about summary refs log tree commit diff stats
path: root/hm/soispha/conf/starship/default.nix
blob: 1dfe042d4ba85246c1dfcbca553e32c98b8e9191 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{lib, ...}: {
  programs.starship = {
    enable = true;
    enableZshIntegration = true;
    settings = {
      add_newline = false;
      format = lib.concatStrings ["$line_break" "$package" "$line_break" "$character"];
      scan_timeout = 20;
      character = {
        success_symbol = "[➜](bold green)";
        error_symbol = "[➜](bold red)";
      };
    };
  };
}