Pregunta

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?

¿Fue útil?

Solución

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

Otros consejos

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)
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top