nixos-private-dots/modules/home-manager/terminal/starship.nix
2024-07-31 06:18:16 +03:00

14 lines
No EOL
380 B
Nix

{
programs.starship = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
# enableNushellIntegration = true;
enableTransience = true; # Fish Shell only. Отображает пустую строку при нажатии enter?
};
home.file.".config/starship.toml".source = ./starship.toml;
}