Domanda

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?

È stato utile?

Soluzione

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

Altri suggerimenti

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)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top