In a terminal window I want to be able to enter commands on the next line
Instead of:
Something-MacBook-Pro-2:~ someone$ <command>
I want:
Something-MacBook-Pro-2:~ someone
$ <command>
It's shown in this video at 1:40 https://www.youtube.com/watch?v=zi-FIG3efag
It seems she is using iTerm2, but I can't find a way to change it.
oh-my-zshor more advanced ones like: https://github.com/denysdovhan/spaceship-prompt – slhck Aug 19 '19 at 17:23bash(you don't say which shell you're using), then you can insert a new-line into your PS1 prompt string with\n(see thePROMPTINGsection of thebashmanual. Other shells will have similar sequences which can be used. – AFH Aug 19 '19 at 17:28