I find it very difficult to read the command line, and am I wondering if there is a way to force 2 carriage returns after I press the Enter key, to space it out more.
I am using Windows 7 command line, but also ssh into a virtual box running linux. I find the git outputs esp hard to read. Thanks
You can set up on Linux variable PS1 for example as
PS1='\n `echo -n \[\e[1\;33m\]` \t`echo \[\e[0m\]` \h \$'
or just add newline in the beginning of the PS1 variable in your .bashrc
:
PS1="\n$PS1"