From 11559789799ca06866c01fd82d9c6f4a1afd33f4 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 30 Nov 2023 23:20:50 -0500 Subject: [PATCH] starship: Disable rust indicator Not really necessary since I know when I'm working in a Rust project and the version number isn't relevant in most cases. --- modules/starship.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/starship.nix b/modules/starship.nix index 4d07d4a..d04e92e 100644 --- a/modules/starship.nix +++ b/modules/starship.nix @@ -71,7 +71,11 @@ purescript.symbol = "purs "; python.symbol = "python "; ruby.symbol = "ruby "; - rust.symbol = "rust "; + + rust = { + symbol = "rust "; + disabled = true; + }; bun = { symbol = "bun ";