mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
17 lines
464 B
Nix
17 lines
464 B
Nix
{...}: {
|
||
programs.starship = {
|
||
enable = true;
|
||
enableBashIntegration = true;
|
||
enableZshIntegration = true;
|
||
enableFishIntegration = true;
|
||
enableNushellIntegration = true;
|
||
enableIonIntegration = true;
|
||
settings = {
|
||
character = {
|
||
success_symbol = "[[](green) ❯](peach)";
|
||
error_symbol = "[[](red) ❯](peach)";
|
||
vimcmd_symbol = "[ ❮](subtext1)"; # For use with zsh-vi-mode
|
||
};
|
||
};
|
||
};
|
||
}
|