문제

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?

도움이 되었습니까?

해결책

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

다른 팁

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)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top