summaryrefslogtreecommitdiff
path: root/home/starship.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/starship.nix')
-rw-r--r--home/starship.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/home/starship.nix b/home/starship.nix
new file mode 100644
index 0000000..74fd28a
--- /dev/null
+++ b/home/starship.nix
@@ -0,0 +1,49 @@
+{
+ config,
+ lib,
+ ...
+}: {
+ home-manager.users.${config.user} = {
+ programs.starship = {
+ enable = true;
+
+ settings = {
+ format = lib.concatStrings [
+ "╭─ "
+ "$username"
+ "$hostname"
+ "$git_branch"
+ "$directory"
+ "$line_break"
+ "╰─ "
+ ];
+
+ username = {
+ style_user = "bold cyan";
+ style_root = "bold red";
+ format = "[$user]($style) ";
+ disabled = false;
+ show_always = true;
+ };
+
+ hostname = {
+ ssh_only = false;
+ format = "on [$hostname](bold blue) ";
+ disabled = false;
+ };
+
+ directory = {
+ format = "[$path]($style)[$read_only]($read_only_style) ";
+ truncation_length = -1;
+ truncate_to_repo = false;
+ truncation_symbol = "…/";
+ };
+
+ git_branch = {
+ style = "bold purple";
+ format = "at [$symbol$branch(:$remote_branch)]($style) ";
+ };
+ };
+ };
+ };
+}