diff --git a/files/fish/functions/fish_prompt.fish b/files/fish/functions/fish_prompt.fish index 6bde68c..7a0dcdc 100644 --- a/files/fish/functions/fish_prompt.fish +++ b/files/fish/functions/fish_prompt.fish @@ -8,7 +8,7 @@ end function fish_cwd_prompt set -l cwd (pwd) test $cwd = $HOME && printf "~" || \ - normal "%s/%s" (basename (dirname $cwd)) (basename $cwd) + printf "%s/%s" (basename (dirname $cwd)) (basename $cwd) end function fish_prompt