nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8fff37a2d7b28885ad66d5e9864a77907df8501b
parent 44bcb4832adf7397b035b9859fa512b97f230751
Author: Toni Brown <me@tb148.net>
Date:   Tue, 24 Mar 2026 16:14:05 +0800

remove starship module

Diffstat:
Dstarship.nix | 45---------------------------------------------
1 file changed, 0 insertions(+), 45 deletions(-)

diff --git a/starship.nix b/starship.nix @@ -1,45 +0,0 @@ -{lib, ...}: { - programs.starship = { - enable = true; - settings = { - format = - lib.concatStrings [ - "$username" - "$line_break" - "$shell" - "$character" - ]; - right_format = "$git_branch$directory"; - continuation_prompt = "[> ](fg:overlay1)"; - username = { - format = "[$user]($style) says:"; - style_user = "bold fg:mauve"; - style_root = "bold fg:mauve"; - show_always = true; - }; - shell = { - disabled = false; - format = "[$indicator]($style)"; - style = "fg:overlay1"; - nu_indicator = ""; - }; - character = { - success_symbol = "[>](bold fg:green)"; - error_symbol = "[>](bold fg:red)"; - vimcmd_symbol = "[<](bold fg:green)"; - vimcmd_replace_one_symbol = "[<](bold fg:lavender)"; - vimcmd_replace_symbol = "[<](bold fg:lavender)"; - vimcmd_visual_symbol = "[<](bold fg:yellow)"; - }; - git_branch = { - format = "[( $branch of)]($style)"; - style = "fg:overlay1"; - }; - directory = { - format = "[ $path]($style)[( $read_only)]($read_only_style)"; - style = "fg:overlay1"; - read_only_style = "fg:overlay1"; - }; - }; - }; -}