Sometimes I launch emacs from the command line with 2 files, as follows:
emacs foo.txt bar.txt
This opens the emacs window, split vertically:
foo.txt
-------
bar.txt
How can I edit my .emacs file so that they show up side-by-side, like this?:
|
foo.txt | bar.txt
|
EDIT: To clarify, I know how to make this happen after emacs has launched (M-x 0, M-x 3, then re-visit bar.txt in the right window). I just want emacs to split side-by-side by default when I launch it, so I don't have to.