From e6731073fa21938129c55cbab66bf8a82849d753 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sat, 2 Mar 2024 20:22:01 -0500 Subject: [PATCH] fixed arrow up text formatting issues with bash prompt --- home/aly/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/home/aly/default.nix b/home/aly/default.nix index 438d96ab..0adcb62c 100644 --- a/home/aly/default.nix +++ b/home/aly/default.nix @@ -34,8 +34,9 @@ ls = "eza --group-directories-first"; }; initExtra = - '' - export PS1='\e[0;34m[\u@\H:\w]\$\e[m ' + '' + export PS1="[\[$(tput setaf 27)\]\u\[$(tput setaf 135)\]@\[$(tput setaf 45)\]\h:\[$(tput setaf 33)\]\w] \[$(tput sgr0)\]$ " + ''; };