From 490a46f1d057e0114d9f7325ace3c1ea70bb8c9a Mon Sep 17 00:00:00 2001 From: Idan Gazit Date: Tue, 21 May 2013 17:34:44 +0300 Subject: [PATCH] Add a newline before prompts --- themes/idan/fish_prompt.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/themes/idan/fish_prompt.fish b/themes/idan/fish_prompt.fish index 874b092..f6d2fd6 100644 --- a/themes/idan/fish_prompt.fish +++ b/themes/idan/fish_prompt.fish @@ -23,6 +23,9 @@ function fish_prompt # output the prompt, left to right + # Add a newline before prompts + echo -e "" + # Display [venvname] if in a virtualenv if set -q VIRTUAL_ENV echo -n -s (set_color -b cyan black) '[' (basename "$VIRTUAL_ENV") ']' $normal ' '