diff --git a/homes/x86_64-linux/rafiq/cli/utilities/starship.nix b/homes/x86_64-linux/rafiq/cli/utilities/starship.nix index 3226d2f..137b75d 100644 --- a/homes/x86_64-linux/rafiq/cli/utilities/starship.nix +++ b/homes/x86_64-linux/rafiq/cli/utilities/starship.nix @@ -4,24 +4,24 @@ let in { programs.starship = { - enable = true; - settings = { - add_newline = false; - format = concatStrings [ - # First Line - ## Left Prompt - "$hostname$directory" - "$fill" - ## Right Prompt - "$all" - # Second Line - ## Left Prompt - "$character" - ]; - git_branch.format = "[$symbol$branch(:$remote_branch)]($style) "; - shlvl.disabled = false; - username.disabled = true; - fill.symbol = " "; - }; + enable = false; + # settings = { + # add_newline = false; + # format = concatStrings [ + # # First Line + # ## Left Prompt + # "$hostname$directory" + # "$fill" + # ## Right Prompt + # "$all" + # # Second Line + # ## Left Prompt + # "$character" + # ]; + # git_branch.format = "[$symbol$branch(:$remote_branch)]($style) "; + # shlvl.disabled = false; + # username.disabled = true; + # fill.symbol = " "; + # }; }; }