Question

When I start up emacs, I'd like to have a shell loaded up right away. Is there a way to do this by changing my .emacs file?

Was it helpful?

Solution

I just put (shell) to the end of my .emacs file and it opens right after emacs start up.

OTHER TIPS

On a fresh install of Emacs 27.1, I had to do the following:

(custom-set-variables
 '(inhibit-startup-screen t))
(switch-to-buffer (shell))
(delete-other-windows)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top