I have my prompt set to add a new line after any preceding output, but I would like to add a new line before the output as well (after commands), effectively surrounding my prompt with empty lines for readability.
Currently I have this:
{end of previous output}
[~/Documents/scripts]
>>> stroop: echo sample output
sample output
This is what I would like to accomplish:
{end of previous output}
[~/Documents/scripts]
>>> stroop: echo sample output
sample output
Is there a way to do this by modifying PS1 or otherwise?